summaryrefslogtreecommitdiff
path: root/egg
diff options
context:
space:
mode:
authorLaurent Bigonville <bigon@bigon.be>2013-06-21 15:19:10 +0200
committerLaurent Bigonville <bigon@bigon.be>2013-12-16 19:58:26 +0100
commit8dbf7d46daa7516319da1862687d47b82fbd3098 (patch)
treeaa41f4d78118acaf5a2d0b31f5e964b083d70261 /egg
parent444c8c5cdda12657374f074cf415634fbe0f6eff (diff)
downloadgcr-8dbf7d46daa7516319da1862687d47b82fbd3098.tar.gz
Fix compilation if valgrind support is completely disabled
https://bugzilla.gnome.org/show_bug.cgi?id=702648
Diffstat (limited to 'egg')
-rw-r--r--egg/egg-testing.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/egg/egg-testing.c b/egg/egg-testing.c
index 805a972..f581bfe 100644
--- a/egg/egg-testing.c
+++ b/egg/egg-testing.c
@@ -48,7 +48,7 @@ egg_testing_on_valgrind (void)
#ifdef WITH_VALGRIND
return RUNNING_ON_VALGRIND;
#else
- return FALSE
+ return FALSE;
#endif
}