diff options
author | Petteri Aimonen <jpa@git.mail.kapsi.fi> | 2013-09-11 13:42:56 +0300 |
---|---|---|
committer | Petteri Aimonen <jpa@git.mail.kapsi.fi> | 2013-09-11 13:42:56 +0300 |
commit | d395768c8d3e63125c15950434fa255fb8c57717 (patch) | |
tree | 2f6994c7f3f9484ee4f173bfb52adde6c1a8253d /tests/callbacks | |
parent | b9f14bddf778a5ed27e3289b90a0657fec3e1a53 (diff) |
Windows build fixes
Diffstat (limited to 'tests/callbacks')
-rw-r--r-- | tests/callbacks/decode_callbacks.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/callbacks/decode_callbacks.c b/tests/callbacks/decode_callbacks.c index c8daed29..45724d0b 100644 --- a/tests/callbacks/decode_callbacks.c +++ b/tests/callbacks/decode_callbacks.c @@ -86,7 +86,7 @@ int main() testmessage.fixed32value.funcs.decode = &print_fixed32; testmessage.fixed32value.arg = "fixed32value: %ld\n"; testmessage.fixed64value.funcs.decode = &print_fixed64; - testmessage.fixed64value.arg = "fixed64value: %lld\n"; + testmessage.fixed64value.arg = "fixed64value: %ld\n"; testmessage.repeatedstring.funcs.decode = &print_string; testmessage.repeatedstring.arg = "repeatedstring: \"%s\"\n"; |