17 lines
416 B
Diff
17 lines
416 B
Diff
From: Daniel Echeverry <epsilon77@gmail.com>
|
|
Last-Update: 2013-01-04
|
|
Description: fix_error_gcc
|
|
---
|
|
This patch header follows DEP-3: http://dep.debian.net/deps/dep3
|
|
--- a/src/njamgame.cpp
|
|
+++ b/src/njamgame.cpp
|
|
@@ -228,7 +228,7 @@ void NjamEngine::StartGame(GameType Gt)
|
|
if (!temp)
|
|
{
|
|
printf("Loading file: %s", filename);
|
|
- printf(SDL_GetError());
|
|
+ printf("%s", SDL_GetError());
|
|
return;
|
|
}
|
|
|