Skip to content
Snippets Groups Projects
Commit de211700 authored by Millian Poquet's avatar Millian Poquet
Browse files

[code] fix logs in main (string -> cstring)

parent 2ec11c1b
No related branches found
No related tags found
No related merge requests found
......@@ -317,11 +317,11 @@ int main(int argc, char ** argv)
if (what == "Connection lost")
{
LOG_F(ERROR, "%s", what);
LOG_F(ERROR, "%s", what.c_str());
}
else
{
LOG_F(ERROR, "%s", what);
LOG_F(ERROR, "%s", what.c_str());
delete queue;
delete order;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment