diff options
author | Andre Heinecke <[email protected]> | 2019-06-05 14:14:38 +0000 |
---|---|---|
committer | Andre Heinecke <[email protected]> | 2019-06-05 14:20:31 +0000 |
commit | 3a3648e3a56712261bda4fa866bd2419a740cec8 (patch) | |
tree | 7e343af17e180769ef1847d8dfd8486a1943af09 /tests/run-threaded.c | |
parent | tests: Avoid variable named the same as a macro (diff) | |
download | gpgme-3a3648e3a56712261bda4fa866bd2419a740cec8.tar.gz gpgme-3a3648e3a56712261bda4fa866bd2419a740cec8.zip |
tests: Use synced output for error in run-threaded
* tests/run-threaded.c (do_data_op): Use synced out macro.
Diffstat (limited to 'tests/run-threaded.c')
-rw-r--r-- | tests/run-threaded.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/run-threaded.c b/tests/run-threaded.c index 60402c13..8a1c666e 100644 --- a/tests/run-threaded.c +++ b/tests/run-threaded.c @@ -504,8 +504,8 @@ do_data_op (void *file_name) } default: { - fprintf (stderr, "Unhandled data type 0x%x for '%s'", type, fname); - exit(1); + out ("Unhandled data type 0x%x for '%s'\n", type, fname); + errpoint; } } |