From a01bac13fec0a15e326ac57fb4a15a85fc6a885c Mon Sep 17 00:00:00 2001 From: Michael Stapelberg Date: Sat, 22 Sep 2012 13:31:08 +0200 Subject: [PATCH] =?utf8?q?don=E2=80=99t=20use=20reserved=20identifiers=20f?= =?utf8?q?or=20include=20guards=20(left-overs)?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit fixes #804 --- i3-config-wizard/xcb.h | 4 ++-- i3-input/i3-input.h | 4 ++-- i3-nagbar/i3-nagbar.h | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/i3-config-wizard/xcb.h b/i3-config-wizard/xcb.h index 4ed182c4..372ed161 100644 --- a/i3-config-wizard/xcb.h +++ b/i3-config-wizard/xcb.h @@ -1,5 +1,5 @@ -#ifndef _XCB_H -#define _XCB_H +#ifndef I3_XCB_H +#define I3_XCB_H /* from X11/keysymdef.h */ #define XCB_NUM_LOCK 0xff7f diff --git a/i3-input/i3-input.h b/i3-input/i3-input.h index f494cbd5..f1d5f077 100644 --- a/i3-input/i3-input.h +++ b/i3-input/i3-input.h @@ -1,5 +1,5 @@ -#ifndef _I3_INPUT -#define _I3_INPUT +#ifndef I3_INPUT +#define I3_INPUT #include diff --git a/i3-nagbar/i3-nagbar.h b/i3-nagbar/i3-nagbar.h index 5a21226b..379a7f6f 100644 --- a/i3-nagbar/i3-nagbar.h +++ b/i3-nagbar/i3-nagbar.h @@ -1,5 +1,5 @@ -#ifndef _I3_NAGBAR -#define _I3_NAGBAR +#ifndef I3_NAGBAR +#define I3_NAGBAR #include -- 2.39.5