Skip to content

Commit

Permalink
Valgrind instrumentation is only enabled in debug builds
Browse files Browse the repository at this point in the history
  • Loading branch information
lpereira committed May 19, 2024
1 parent 3ca4634 commit 6be4831
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/bin/lwan/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ print_build_time_configuration(void)
printf(" sockopt-reuseport-incoming-cpu");
#endif

#if defined(LWAN_HAVE_VALGRIND)
#if !defined(NDEBUG) && defined(LWAN_HAVE_VALGRIND)
printf(" valgrind");
#endif

Expand Down

0 comments on commit 6be4831

Please sign in to comment.