summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBent Bisballe Nyeng <deva@aasimon.org>2014-02-19 10:40:11 +0100
committerBent Bisballe Nyeng <deva@aasimon.org>2014-02-19 10:40:11 +0100
commit794df88388d055e8dd9ecac89abca735796b4de4 (patch)
treebf66fb5845d543f7c6799ce2e6d9366e62f7bf97
parent67aae04b9e2c3bc7585fe93a2e33aad187fd3750 (diff)
Force division by zero for jenkins error test.
-rw-r--r--main_complete.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/main_complete.c b/main_complete.c
index a649078..a79dbc5 100644
--- a/main_complete.c
+++ b/main_complete.c
@@ -63,8 +63,8 @@ int main(int argc, char *argv[])
INFO(example, "We are up and running");
DEBUG(example, "Or are we %d?", 42);
-
- DEBUG(foo, "Or are we %d?", 42);
+ int a = 0;
+ DEBUG(foo, "Or are we %d?", 1/a);
hug_close();