| commit | ac2d0f3340a819362da460a35dc8e0cd81c0e004 | [log] [tgz] |
|---|---|---|
| author | Alyssa Ross <hi@alyssa.is> | Wed Mar 01 13:42:50 2023 +0000 |
| committer | David Howells <dhowells@redhat.com> | Mon Mar 20 15:10:34 2023 +0000 |
| tree | d4ebccb34f3e4a793f9a91eb5fb228063d3db820 | |
| parent | 81a8c963db50681c7470dcfe8fe6c79a70d7aadd [diff] |
Fix format specifier for pointer subtraction
Resolves the following compiler error:
keyctl_watch.c: In function 'consumer':
keyctl_watch.c:177:61: error: format '%zx' expects argument of type 'size_t', but argument 3 has type 'int' [-Werror=format=]
177 | fprintf(stderr, "NOTIFY[%03zx]: ty=%06x sy=%02x i=%08x\n",
| ~~~~^
| |
| long unsigned int
| %03x
178 | p - buffer, n.n.type, n.n.subtype, n.n.info);
| ~~~~~~~~~~
| |
| int
Signed-off-by: Alyssa Ross <hi@alyssa.is>
Signed-off-by: David Howells <dhowells@redhat.com>
Link: https://lore.kernel.org/r/20230301134250.301819-1-hi@alyssa.is/