Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Commit

Permalink
indent
Browse files Browse the repository at this point in the history
  • Loading branch information
slouken committed Aug 11, 2007
1 parent 4606648 commit af45eda
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/video/x11/SDL_x11gamma.c
Expand Up @@ -78,7 +78,8 @@ X11_TrackColormap(Display * display, int scrNum, Colormap colormap,

/* increase the table by one entry. If the table is NULL create the
first entrty */
cmapTable = SDL_realloc(cmapTable, (numCmaps + 1) * sizeof(cmapTableEntry));
cmapTable =
SDL_realloc(cmapTable, (numCmaps + 1) * sizeof(cmapTableEntry));
if (NULL == cmapTable) {
SDL_SetError("Out of memory in X11_TrackColormap()");
return;
Expand Down

0 comments on commit af45eda

Please sign in to comment.