diff options
author | Okan Demirmen <okan@cvs.openbsd.org> | 2013-05-14 13:39:54 +0000 |
---|---|---|
committer | Okan Demirmen <okan@cvs.openbsd.org> | 2013-05-14 13:39:54 +0000 |
commit | 0327513c7919c02f3e1cf3fea27a911c8a4c7a63 (patch) | |
tree | 8499f4dfff8109dffd18ea424365465648dd9810 | |
parent | bc46457e4ea6b58acca18f402915f60c3f37ab6f (diff) |
if -> ifdef
-rw-r--r-- | app/cwm/calmwm.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/cwm/calmwm.c b/app/cwm/calmwm.c index 3ffe2b4db..a9afd91dc 100644 --- a/app/cwm/calmwm.c +++ b/app/cwm/calmwm.c @@ -15,7 +15,7 @@ * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * - * $OpenBSD: calmwm.c,v 1.74 2013/04/12 14:49:16 okan Exp $ + * $OpenBSD: calmwm.c,v 1.75 2013/05/14 13:39:53 okan Exp $ */ #include <sys/param.h> @@ -181,7 +181,7 @@ x_wmerrorhandler(Display *dpy, XErrorEvent *e) static int x_errorhandler(Display *dpy, XErrorEvent *e) { -#if DEBUG +#ifdef DEBUG char msg[80], number[80], req[80]; XGetErrorText(X_Dpy, e->error_code, msg, sizeof(msg)); |