Skip to content

Commit c0a19e9

Browse files
committed
Add newline to error
1 parent cdc65b1 commit c0a19e9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

source/socket.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ GMOD_MODULE_OPEN( )
1919
case PARSE_SUCCESS:
2020
break;
2121
case PARSE_CANT_READ:
22-
LUA->ThrowError("Failed to read whitelist file!");
22+
LUA->ThrowError("Failed to read whitelist file!\n");
2323
break;
2424
case PARSE_NO_ENTRIES:
25-
LUA->ThrowError("Didn't find any valid entries in whitelist file!");
25+
LUA->ThrowError("Didn't find any valid entries in whitelist file!\n");
2626
break;
2727
default:
2828
break;

0 commit comments

Comments
 (0)