Navigation Menu

Skip to content

Commit

Permalink
Too much backslash-n at end of line
Browse files Browse the repository at this point in the history
  • Loading branch information
pmandin committed Aug 5, 2004
1 parent 347d51e commit 7e1a381
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/video/gem/SDL_gemvideo.c
Expand Up @@ -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;
}

Expand All @@ -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;
}

Expand Down

0 comments on commit 7e1a381

Please sign in to comment.