Skip to content

Commit

Permalink
Merge pull request zserge#88 from RyDroid/minor-c
Browse files Browse the repository at this point in the history
Very minor changes to C source code
  • Loading branch information
zserge authored Aug 10, 2016
2 parents d1c85c5 + e42bcbb commit 452c926
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion example/jsondump.c
Original file line number Diff line number Diff line change
Expand Up @@ -122,5 +122,5 @@ int main() {
}
}

return 0;
return EXIT_SUCCESS;
}
4 changes: 2 additions & 2 deletions example/simple.c
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
* tokens is predictable.
*/

const char *JSON_STRING =
static const char *JSON_STRING =
"{\"user\": \"johndoe\", \"admin\": false, \"uid\": 1000,\n "
"\"groups\": [\"users\", \"wheel\", \"audio\", \"video\"]}";

Expand Down Expand Up @@ -72,5 +72,5 @@ int main() {
JSON_STRING + t[i].start);
}
}
return 0;
return EXIT_SUCCESS;
}

0 comments on commit 452c926

Please sign in to comment.