diff options
author | Kenny Levinsen <kl@kl.wtf> | 2021-09-21 12:46:52 +0200 |
---|---|---|
committer | Kenny Levinsen <kl@kl.wtf> | 2021-09-21 12:48:24 +0200 |
commit | e2baadc23047edaccc4a7d3d95e6ba8c30f75851 (patch) | |
tree | 9faa269c82396b64f8b72f41a8c6dc14409537a2 /common | |
parent | db08fb921f8ea13202a487dcea2fdd3914b87dfd (diff) |
clang-format: Fix alignment
Diffstat (limited to 'common')
-rw-r--r-- | common/drm.c | 4 | ||||
-rw-r--r-- | common/terminal.c | 4 |
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 |