netstat: Fix -Wformat=

Change-Id: I70bfb12f9d56e7e4c8dbdd4bd48ca0282057a713
Reviewed-on: https://review.haiku-os.org/c/haiku/+/3312
Reviewed-by: Adrien Destugues <[email protected]>
This commit is contained in:
Murai Takashi
2020-10-13 15:19:05 +00:00
committed by Jérôme Duval
parent ad22267906
commit a2efc1d6e0
+2 -2
View File
@@ -278,9 +278,9 @@ main(int argc, char** argv)
else
name = info.args;
printf("%ld/%s\n", stat.owner, name);
printf("%" B_PRId32 "/%s\n", stat.owner, name);
} else
printf("%ld\n", stat.owner);
printf("%" B_PRId32 "\n", stat.owner);
}
return 0;