Fix compiler warning about void return in non void method.

This commit is contained in:
Holger Hans Peter Freyther 2010-04-07 23:00:23 +02:00
parent 441273766a
commit 500ff97c21
1 changed files with 2 additions and 0 deletions

View File

@ -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;
}