Merge pull request #88 from RyDroid/minor-c

Very minor changes to C source code
master
Serge Zaitsev 8 years ago committed by GitHub
commit 452c926709

@ -122,5 +122,5 @@ again:
} }
} }
return 0; return EXIT_SUCCESS;
} }

@ -8,7 +8,7 @@
* tokens is predictable. * tokens is predictable.
*/ */
const char *JSON_STRING = static const char *JSON_STRING =
"{\"user\": \"johndoe\", \"admin\": false, \"uid\": 1000,\n " "{\"user\": \"johndoe\", \"admin\": false, \"uid\": 1000,\n "
"\"groups\": [\"users\", \"wheel\", \"audio\", \"video\"]}"; "\"groups\": [\"users\", \"wheel\", \"audio\", \"video\"]}";
@ -72,5 +72,5 @@ int main() {
JSON_STRING + t[i].start); JSON_STRING + t[i].start);
} }
} }
return 0; return EXIT_SUCCESS;
} }

Loading…
Cancel
Save