changeset 924:6e81ce1372d1

Too much backslash-n at end of line
author Patrice Mandin <patmandin@gmail.com>
date Thu, 05 Aug 2004 19:50:06 +0000
parents 2748679027ff
children 15ff92ae7e1b
files src/video/gem/SDL_gemvideo.c
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/src/video/gem/SDL_gemvideo.c	Thu Aug 05 19:43:07 2004 +0000
+++ b/src/video/gem/SDL_gemvideo.c	Thu Aug 05 19:50:06 2004 +0000
@@ -663,7 +663,7 @@
 		/* 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 @@
 		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;
 		}