aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <zecke@selfish.org>2010-04-07 23:00:23 +0200
committerHolger Hans Peter Freyther <zecke@selfish.org>2010-04-07 23:00:23 +0200
commit500ff97c21c14f6c76afe902c4ceebf8bc6497d2 (patch)
tree947e23d91b6a0ade327fb93093095a118e367054
parent441273766a4c7842b457f19bad3375e9acccc842 (diff)
Fix compiler warning about void return in non void method.
-rw-r--r--openbsc/tests/debug/debug_test.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/openbsc/tests/debug/debug_test.c b/openbsc/tests/debug/debug_test.c
index 695d65c0b..f3e483703 100644
--- a/openbsc/tests/debug/debug_test.c
+++ b/openbsc/tests/debug/debug_test.c
@@ -38,4 +38,6 @@ int main(int argc, char** argv)
DEBUGP(DRLL, "You should see this\n");
DEBUGP(DCC, "You should see this\n");
DEBUGP(DMM, "You should not see this\n");
+
+ return 0;
}