Skip to content

Commit

Permalink
LuaFAR: text in some error messages was not left-aligned
Browse files Browse the repository at this point in the history
  • Loading branch information
shmuz committed Oct 30, 2024
1 parent 685084a commit b770d1f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion luafar/src/service.c
Original file line number Diff line number Diff line change
Expand Up @@ -2050,7 +2050,7 @@ void LF_Error(lua_State *L, const wchar_t* aMsg)
lua_pushlstring(L, (void*)L":\n", sizeof(wchar_t) * 2);
LF_Gsub(L, aMsg, L"\n\t", L"\n ");
lua_concat(L, 3);
LF_Message(L, (void*)lua_tostring(L,-1), L"Error", L"OK", "w", NULL, NULL);
LF_Message(L, (void*)lua_tostring(L,-1), L"Error", L"OK", "wl", NULL, NULL);
lua_pop(L, 1);
}

Expand Down

0 comments on commit b770d1f

Please sign in to comment.