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

Commit

Permalink
Added missing return
Browse files Browse the repository at this point in the history
  • Loading branch information
slouken committed Dec 20, 2008
1 parent e892214 commit b7bc01a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/video/x11/SDL_x11render.c
Expand Up @@ -621,7 +621,7 @@ X11_RenderLine(SDL_Renderer * renderer, int x1, int y1, int x2, int y2)
foreground = renderdrawcolor(renderer, 1);
XSetForeground(data->display, data->gc, foreground);
XDrawLine(data->display, data->drawable, data->gc, x1, y1, x2, y2);

return 0;
}

static int
Expand Down

0 comments on commit b7bc01a

Please sign in to comment.