aboutsummaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
Diffstat (limited to 'common')
-rw-r--r--common/drm.c4
-rw-r--r--common/terminal.c4
2 files changed, 4 insertions, 4 deletions
diff --git a/common/drm.c b/common/drm.c
index 897028c..9591dc0 100644
--- a/common/drm.c
+++ b/common/drm.c
@@ -9,8 +9,8 @@
#include "drm.h"
// From libdrm
-#define DRM_IOCTL_BASE 'd'
-#define DRM_IO(nr) _IO(DRM_IOCTL_BASE, nr)
+#define DRM_IOCTL_BASE 'd'
+#define DRM_IO(nr) _IO(DRM_IOCTL_BASE, nr)
#define DRM_IOCTL_SET_MASTER DRM_IO(0x1e)
#define DRM_IOCTL_DROP_MASTER DRM_IO(0x1f)
diff --git a/common/terminal.c b/common/terminal.c
index 6274957..0c3466f 100644
--- a/common/terminal.c
+++ b/common/terminal.c
@@ -13,14 +13,14 @@
#include <linux/vt.h>
#define K_ENABLE K_UNICODE
#define K_DISABLE K_OFF
-#define FRSIG 0
+#define FRSIG 0
#elif defined(__FreeBSD__)
#include <sys/consio.h>
#include <sys/kbio.h>
#include <termios.h>
#define K_ENABLE K_XLATE
#define K_DISABLE K_RAW
-#define FRSIG SIGIO
+#define FRSIG SIGIO
#else
#error Unsupported platform
#endif