summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Williams <dcbw@redhat.com>2012-01-09 19:03:45 -0600
committerDan Williams <dcbw@redhat.com>2012-01-09 19:25:53 -0600
commitfe5c5c2a01ed6e751759776230a266d2bcb5cfda (patch)
treee42bdb1a7284d4d5a7b745fc8dda7a279f0bd4c8
parentd4940f4ab2165398168e82b283e856e71ec24a68 (diff)
test: fix printf format
-rw-r--r--src/test-dump-pipe.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test-dump-pipe.c b/src/test-dump-pipe.c
index 122ef88..f512754 100644
--- a/src/test-dump-pipe.c
+++ b/src/test-dump-pipe.c
@@ -87,7 +87,7 @@ int main(int argc, char **argv)
while (1) {
result = wimaxll_msg_read(wmx, pipe_name, &buf);
if (result < 0) {
- fprintf(stderr, "E: reading from pipe %s failed: %d\n",
+ fprintf(stderr, "E: reading from pipe %s failed: %zd\n",
pipe_name, result);
break;
}