Skip to content

Commit

Permalink
Fix cpplint
Browse files Browse the repository at this point in the history
  • Loading branch information
tobbi committed Sep 12, 2023
1 parent 95f1417 commit d950d26
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/squirrel/squirrel_virtual_machine.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ __attribute__((__format__ (__printf__, 2, 0)))
void printfunc(HSQUIRRELVM, const char* fmt, ...)
{
char buf[4096];
char separator[] = "\n";
const char separator[] = "\n";
va_list arglist;
va_start(arglist, fmt);
vsnprintf(buf, sizeof(buf), fmt, arglist);
Expand Down

0 comments on commit d950d26

Please sign in to comment.