Commit 092d48fc authored by Ryan C. Gordon's avatar Ryan C. Gordon

Fixed compiler warning.

--HG--
extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%401616
parent 764d3439
......@@ -241,13 +241,13 @@ static int xio_errhandler(Display *d)
return(XIO_handler(d));
}
static int (*Xext_handler)(Display *,char *,char *) = NULL;
static int xext_errhandler(Display *d, char *ext_name, char *reason)
static int (*Xext_handler)(Display *, _Xconst char *, _Xconst char *) = NULL;
static int xext_errhandler(Display *d, _Xconst char *ext, _Xconst char *reason)
{
#ifdef XFREE86_DEBUG
printf("Xext error inside SDL (may be harmless):\n");
printf(" Extension \"%s\" %s on display \"%s\".\n",
ext_name, reason, XDisplayString(d));
ext, reason, XDisplayString(d));
#endif
if (SDL_strcmp(reason, "missing") == 0) {
......@@ -260,7 +260,7 @@ static int xext_errhandler(Display *d, char *ext_name, char *reason)
}
/* Everything else goes to the default handler... */
return Xext_handler(d, ext_name, reason);
return Xext_handler(d, ext, reason);
}
/* Find out what class name we should use */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment