Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge tag 'linux-kselftest-3.19-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest

Pull kselftest fix from Shuah Khan:
"Fix exec test compile warnings"

* tag 'linux-kselftest-3.19-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest:
selftests/exec: Use %zu to format size_t

+2 -2
+2 -2
tools/testing/selftests/exec/execveat.c
··· 179 179 */ 180 180 fd = open(longpath, O_RDONLY); 181 181 if (fd > 0) { 182 - printf("Invoke copy of '%s' via filename of length %lu:\n", 182 + printf("Invoke copy of '%s' via filename of length %zu:\n", 183 183 src, strlen(longpath)); 184 184 fail += check_execveat(fd, "", AT_EMPTY_PATH); 185 185 } else { 186 - printf("Failed to open length %lu filename, errno=%d (%s)\n", 186 + printf("Failed to open length %zu filename, errno=%d (%s)\n", 187 187 strlen(longpath), errno, strerror(errno)); 188 188 fail++; 189 189 }