openbsd-ports/x11/olvwm/patches/patch-09

24 lines
503 B
Plaintext
Raw Normal View History

--- error.c.orig Thu Jan 13 22:36:04 1994
+++ ./error.c Sat Jul 17 10:05:18 1999
@@ -13,7 +13,11 @@
#include <stdio.h>
#include <stdlib.h>
+#ifdef __FreeBSD__
+#include <X11/Xlibint.h>
+#else
#include <X11/Xlib.h>
+#endif
#include <X11/Xproto.h>
#include "i18n.h"
@@ -232,8 +236,6 @@
err->resourceid);
FPRINTF(stderr, GetString(" serial number of failed request: %d\n"),
err->serial);
- FPRINTF(stderr, GetString(" current request serial number: %d\n"),
- dpy->request);
}
1998-09-29 22:31:44 -04:00