commit: 7959b868f474a7b1a3238ad6a8b24ba6c23bb5b0
parent f0eb0911f138e55da0e5d88be91080044c4e00d6
Author: Haelwenn (lanodan) Monnier <contact@hacktivis.me>
Date: Sun, 3 Jan 2021 05:25:01 +0100
Fix formatting
Diffstat:
2 files changed, 4 insertions(+), 3 deletions(-)
diff --git a/inaban.c b/inaban.c
@@ -706,7 +706,8 @@ main(int argc, char *argv[])
}
char *terminal = getenv("TERMINAL");
- if(NULL != terminal) {
+ if(NULL != terminal)
+ {
termcmd[0] = terminal;
}
diff --git a/xdg-decoration.c b/xdg-decoration.c
@@ -1,10 +1,10 @@
// Copyright 2019-2021 Haelwenn (lanodan) Monnier <contact+inaban@hacktivis.me>
// SPDX-License-Identifier: BSD-3-Clause
-#include <stdlib.h> // free()
-
#include "inaban.h"
+#include <stdlib.h> // free()
+
struct inaban_xdg_decoration
{
struct wlr_xdg_toplevel_decoration_v1 *wlr_decoration;