# HG changeset patch # User Sam Lantinga # Date 1243503554 0 # Node ID 210e209b87cc9663b17ef82e6c1ecdb46ebdd19b # Parent 7f684f249ec9b3467ccbf9eb97d78c69a2090a15 error message typo fix diff -r 7f684f249ec9 -r 210e209b87cc src/video/SDL_drawpoint.c --- a/src/video/SDL_drawpoint.c Sat May 23 22:41:08 2009 +0000 +++ b/src/video/SDL_drawpoint.c Thu May 28 09:39:14 2009 +0000 @@ -29,7 +29,7 @@ { /* This function doesn't work on surfaces < 8 bpp */ if (dst->format->BitsPerPixel < 8) { - SDL_SetError("SDL_DrawLine(): Unsupported surface format"); + SDL_SetError("SDL_DrawPoint(): Unsupported surface format"); return (-1); }