From 11d91a27a444ea810e1f1e6602a1e07b93ae8764 Mon Sep 17 00:00:00 2001 From: ocornut Date: Sat, 1 Aug 2015 17:18:01 -0600 Subject: [PATCH] Carriage return (#289) --- examples/sdl_opengl_example/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/sdl_opengl_example/main.cpp b/examples/sdl_opengl_example/main.cpp index aac9c6a5..3499924c 100644 --- a/examples/sdl_opengl_example/main.cpp +++ b/examples/sdl_opengl_example/main.cpp @@ -11,7 +11,7 @@ int main(int, char**) // Setup SDL if (SDL_Init(SDL_INIT_EVERYTHING) != 0) { - printf("Error: %s", SDL_GetError()); + printf("Error: %s\n", SDL_GetError()); return -1; }