Fixed compiler warnings in test programs by adding return statements.

This commit is contained in:
Philipp Wiesemann 2013-07-14 13:30:26 +02:00
parent 7ca8149a59
commit 5aeed40282
2 changed files with 4 additions and 0 deletions

View file

@ -227,6 +227,8 @@ main(int argc, char *argv[])
}
quit(0);
return 0; /* to prevent compiler warning */
}
/* vi: set ts=4 sw=4 expandtab: */

View file

@ -162,6 +162,8 @@ main(int argc, char *argv[])
}
quit(0);
return 0; /* to prevent compiler warning */
}
/* vi: set ts=4 sw=4 expandtab: */