Very minor changes to C source code

This commit is contained in:
Nicola Spanti (RyDroid)
2016-08-08 15:54:56 +02:00
parent d1c85c569d
commit e42bcbbada
2 changed files with 3 additions and 3 deletions

View File

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

View File

@@ -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\"]}";
@@ -72,5 +72,5 @@ int main() {
JSON_STRING + t[i].start);
}
}
return 0;
return EXIT_SUCCESS;
}