fix format in test (#515)
authorRosen Penev <rosenp@gmail.com>
Fri, 15 May 2020 18:34:31 +0000 (11:34 -0700)
committerGitHub <noreply@github.com>
Fri, 15 May 2020 18:34:31 +0000 (19:34 +0100)
Fixes warning under 32-bit.

test/test_syscalls.c

index e1dbab3a9f86f8fe704a0d3da2c4db4dd148a4fe..18326c0706a7b780c7cfd57c70fd1003ad1ebf39 100644 (file)
@@ -1746,7 +1746,7 @@ static int test_socket(void)
 
        start_test("socket");
        if (strlen(testsock) + 1 > sizeof(su.sun_path)) {
-               fprintf(stderr, "Need to shorten mount point by %lu chars\n",
+               fprintf(stderr, "Need to shorten mount point by %zu chars\n",
                        strlen(testsock) + 1 - sizeof(su.sun_path));
                return -1;
        }