From 3ca0d8a171bdcaa94dc871d3cb7b04f2248053bb Mon Sep 17 00:00:00 2001 From: Consus Date: Mon, 4 Dec 2023 00:57:31 +0300 Subject: [PATCH] Unwrap #define value In the name of constistency do not wrap the value in parenthesis if the value is a single number. --- src/server.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/server.c b/src/server.c index e3c5f7e3..0aa07a09 100644 --- a/src/server.c +++ b/src/server.c @@ -31,7 +31,7 @@ #include "workspaces.h" #include "xwayland.h" -#define LAB_WLR_COMPOSITOR_VERSION (5) +#define LAB_WLR_COMPOSITOR_VERSION 5 #define LAB_WLR_FRACTIONAL_SCALE_V1_VERSION 1 static struct wlr_compositor *compositor;