Просмотр исходного кода

selftests/exec: Use %zu to format size_t

On 32-bit:

execveat.c: In function 'check_execveat_pathmax':
execveat.c:183: warning: format '%lu' expects type 'long unsigned int', but argument 3 has type 'size_t'
execveat.c:187: warning: format '%lu' expects type 'long unsigned int', but argument 2 has type 'size_t'

Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
Signed-off-by: Shuah Khan <shuahkh@osg.samsung.com>
Geert Uytterhoeven 10 лет назад
Родитель
Сommit
6898b627aa
1 измененных файлов с 2 добавлено и 2 удалено
  1. 2 2
      tools/testing/selftests/exec/execveat.c

+ 2 - 2
tools/testing/selftests/exec/execveat.c

@@ -179,11 +179,11 @@ static int check_execveat_pathmax(int dot_dfd, const char *src, int is_script)
 	 */
 	 */
 	fd = open(longpath, O_RDONLY);
 	fd = open(longpath, O_RDONLY);
 	if (fd > 0) {
 	if (fd > 0) {
-		printf("Invoke copy of '%s' via filename of length %lu:\n",
+		printf("Invoke copy of '%s' via filename of length %zu:\n",
 			src, strlen(longpath));
 			src, strlen(longpath));
 		fail += check_execveat(fd, "", AT_EMPTY_PATH);
 		fail += check_execveat(fd, "", AT_EMPTY_PATH);
 	} else {
 	} else {
-		printf("Failed to open length %lu filename, errno=%d (%s)\n",
+		printf("Failed to open length %zu filename, errno=%d (%s)\n",
 			strlen(longpath), errno, strerror(errno));
 			strlen(longpath), errno, strerror(errno));
 		fail++;
 		fail++;
 	}
 	}