diff options
author | Petteri Aimonen <jpa@git.mail.kapsi.fi> | 2012-05-19 21:25:47 +0300 |
---|---|---|
committer | Petteri Aimonen <jpa@git.mail.kapsi.fi> | 2012-05-19 21:25:47 +0300 |
commit | feddc0115ce72b49688dc7006ca3027d958d6e99 (patch) | |
tree | 85569aeefa6dcd134a434004dda7704c18229677 /example/client.c | |
parent | f9501ca18589ff7d1983a9d79400776062ae4b71 (diff) | |
parent | b94329088691538004f745a28e568d5ae1fba456 (diff) |
Merge branch 'master' of https://code.google.com/p/nanopb
Diffstat (limited to 'example/client.c')
-rw-r--r-- | example/client.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/example/client.c b/example/client.c index 95112e4c..9ad9c8c9 100644 --- a/example/client.c +++ b/example/client.c @@ -30,7 +30,7 @@ bool printfile_callback(pb_istream_t *stream, const pb_field_t *field, void *arg if (!pb_decode(stream, FileInfo_fields, &fileinfo)) return false; - printf("%-10lld %s\n", fileinfo.inode, fileinfo.name); + printf("%-10lld %s\n", (long long)fileinfo.inode, fileinfo.name); return true; } |