From 7e1a3817af3dd3f1624e352e4dfceffb036f1de9 Mon Sep 17 00:00:00 2001 From: Patrice Mandin Date: Thu, 5 Aug 2004 19:50:06 +0000 Subject: [PATCH] Too much backslash-n at end of line --- src/video/gem/SDL_gemvideo.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/video/gem/SDL_gemvideo.c b/src/video/gem/SDL_gemvideo.c index e9b7578c1..f089a112b 100644 --- a/src/video/gem/SDL_gemvideo.c +++ b/src/video/gem/SDL_gemvideo.c @@ -663,7 +663,7 @@ SDL_Surface *GEM_SetVideoMode(_THIS, SDL_Surface *current, /* Calculate window size */ if (!wind_calc(WC_BORDER, GEM_win_type, 0,0,width,height, &x2,&y2,&w2,&h2)) { GEM_FreeBuffers(this); - SDL_SetError("Can not calculate window attributes\n"); + SDL_SetError("Can not calculate window attributes"); return NULL; } @@ -675,7 +675,7 @@ SDL_Surface *GEM_SetVideoMode(_THIS, SDL_Surface *current, GEM_handle=wind_create(GEM_win_type, x2,y2,w2,h2); if (GEM_handle<0) { GEM_FreeBuffers(this); - SDL_SetError("Can not create window\n"); + SDL_SetError("Can not create window"); return NULL; }