Fixed building test app without debug.

Compilers complained about unused variables after 37e2a3ea1bf1.
This commit is contained in:
Valentin Bartenev
2020-11-01 13:22:11 +03:00
parent bbe4b97ca1
commit d03b217f33

View File

@@ -72,7 +72,13 @@ main(int argc, char **argv)
for (i = 0; i < thread_count - 1; i++) { for (i = 0; i < thread_count - 1; i++) {
err = pthread_join(threads[i], NULL); err = pthread_join(threads[i], NULL);
nxt_unit_debug(ctx, "join thread #%d: %d", i, err); if (nxt_fast_path(err == 0)) {
nxt_unit_debug(ctx, "join thread #%d", i);
} else {
nxt_unit_alert(ctx, "pthread_join(#%d) failed: %s (%d)",
i, strerror(err), err);
}
} }
nxt_unit_free(ctx, threads); nxt_unit_free(ctx, threads);
@@ -132,7 +138,7 @@ worker(void *main_ctx)
nxt_unit_done(ctx); nxt_unit_done(ctx);
return NULL; return (void *) (intptr_t) rc;
} }