diff options
author | Jeffrey Hutzelman <jhutz@cmu.edu> | 2013-04-03 18:47:46 -0400 |
---|---|---|
committer | Jeffrey Hutzelman <jhutz@cmu.edu> | 2013-04-03 18:47:46 -0400 |
commit | d39179badeb5856f7ce2ef646b819ad7708acc44 (patch) | |
tree | 7fb21efbed905ef1ce96b8ee8ae8e706e8ae3218 | |
parent | 6073bd61fc1af60a90b71150911a76787e031355 (diff) |
Fix new style issue in test_server
Style says return types go on their own line.
-rw-r--r-- | server/test_server.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/server/test_server.c b/server/test_server.c index b9b0277..b73edd1 100644 --- a/server/test_server.c +++ b/server/test_server.c @@ -49,7 +49,8 @@ int failures = 0; void test_uloc(void); -int main(int argc, char **argv) +int +main(int argc, char **argv) { puts("Zephyr server testing"); puts(""); |