From 05785fa68892880b2e067eac3cd0262bde438879 Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Mon, 9 May 2016 11:29:00 -0400 Subject: by default, don't worry about cleanup before exiting --- src/runes.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src') diff --git a/src/runes.c b/src/runes.c index 9315ac7..1078ee9 100644 --- a/src/runes.c +++ b/src/runes.c @@ -17,8 +17,10 @@ int main (int argc, char *argv[]) runes_loop_run(&loop); +#ifdef RUNES_VALGRIND runes_term_cleanup(&t); runes_loop_cleanup(&loop); +#endif return 0; } -- cgit v1.2.3-54-g00ecf