Skip to content
Snippets Groups Projects
Commit 7ba93c18 authored by LJ Sonic's avatar LJ Sonic
Browse files

Fix warning and formatting

parent 76bda716
No related branches found
No related tags found
2 merge requests!985Shaders next merge,!833Fix compiler warning
......@@ -34,7 +34,8 @@
#define FMT_FILECALLBACKID "file_callback_%d"
static const char *whitelist[] = { // Allow scripters to write files of these types to SRB2's folder
// Allow scripters to write files of these types to SRB2's folder
static const char *whitelist[] = {
".bmp",
".cfg",
".csv",
......@@ -508,7 +509,6 @@ static int io_readline (lua_State *L) {
static int g_write (lua_State *L, FILE *f, int arg) {
int nargs = lua_gettop(L) - 1;
int status = 1;
size_t count;
for (; nargs--; arg++) {
if (lua_type(L, arg) == LUA_TNUMBER) {
/* optimization: could be done exactly as for strings */
......@@ -518,12 +518,10 @@ static int g_write (lua_State *L, FILE *f, int arg) {
else {
size_t l;
const char *s = luaL_checklstring(L, arg, &l);
count += l;
if (ftell(f) + l > FILELIMIT)
{
luaL_error(L,"write limit bypassed in file. Changes have been discarded.");
break;
}
if (ftell(f) + l > FILELIMIT) {
luaL_error(L,"write limit bypassed in file. Changes have been discarded.");
break;
}
status = status && (fwrite(s, sizeof(char), l, f) == l);
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment