Remove useless newlines in SDL_Log*

Trailing new line is not necessary in SDL_Log* methods.
This commit is contained in:
Romain Vimont
2018-02-01 15:55:26 +01:00
parent 2683fa20ed
commit 3bc63708b4
2 changed files with 6 additions and 6 deletions

View File

@@ -53,7 +53,7 @@ int control_event_serialize(const struct control_event *event, unsigned char *bu
write32(&buf[13], (Uint32) event->scroll_event.vscroll);
return 17;
default:
SDL_LogWarn(SDL_LOG_CATEGORY_APPLICATION, "Unknown event type: %u\n", (unsigned) event->type);
SDL_LogWarn(SDL_LOG_CATEGORY_APPLICATION, "Unknown event type: %u", (unsigned) event->type);
return 0;
}
}