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:
committed by
Jérôme Duval
parent
ad22267906
commit
a2efc1d6e0
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user