get rid of that printf for xerrors

SVN revision: 4392
This commit is contained in:
Carsten Haitzler 2001-03-18 01:37:09 +00:00
parent 9b8423bacd
commit 012b448a49
1 changed files with 4 additions and 2 deletions

View File

@ -64,12 +64,14 @@ static Window e_window_at_xy_0(Window base, int bx, int by, int x, int y);
static void
e_handle_x_error(Display * d, XErrorEvent * ev)
{
/*
char err[16384];
XGetErrorText(d, ev->error_code, err, 16000);
XGetErrorText(d, ev->error_code, err, 16000);
printf("X Error:\n"
"Error: %s\nrequest: %i\nminor: %i\n", err, ev->request_code, ev->minor_code);
/* ignroe all X errors */
*/
/* ignore all X errors */
return;
d = NULL;
ev = NULL;