diff options
author | Petteri Aimonen <jpa@git.mail.kapsi.fi> | 2013-03-09 14:49:15 +0200 |
---|---|---|
committer | Petteri Aimonen <jpa@git.mail.kapsi.fi> | 2013-03-09 14:49:15 +0200 |
commit | 03526471189711f6656dfa074fc6a8fd7f3d340b (patch) | |
tree | 12e1969b04909547bf32309cfcc4c9409e24fbbc /tests/test_encode3.c | |
parent | 9b6641ac643af4f301e05421f2b228084dcc8693 (diff) |
Implement error message support for the encoder side.
Update issue 7
Status: FixedInGit
Diffstat (limited to 'tests/test_encode3.c')
-rw-r--r-- | tests/test_encode3.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_encode3.c b/tests/test_encode3.c index 4f6859ac..982ad3c8 100644 --- a/tests/test_encode3.c +++ b/tests/test_encode3.c @@ -124,7 +124,7 @@ int main(int argc, char **argv) } else { - fprintf(stderr, "Encoding failed!\n"); + fprintf(stderr, "Encoding failed: %s\n", PB_GET_ERROR(&stream)); return 1; /* Failure */ } } |