summaryrefslogtreecommitdiffstats
path: root/sway/config.c
diff options
context:
space:
mode:
authorLibravatar Drew DeVault <sir@cmpwn.com>2015-08-18 07:19:20 -0400
committerLibravatar Drew DeVault <sir@cmpwn.com>2015-08-18 07:20:34 -0400
commit2139001c9f61a84ed1ac581a54bb2bde68928afd (patch)
treea6efb486fdb71675775253d79e9550b5fc1d2f67 /sway/config.c
parentfixed floating window crashing bug (diff)
downloadsway-2139001c9f61a84ed1ac581a54bb2bde68928afd.tar.gz
sway-2139001c9f61a84ed1ac581a54bb2bde68928afd.tar.zst
sway-2139001c9f61a84ed1ac581a54bb2bde68928afd.zip
Coding style enforcement
This was done by hand, so I might have missed things. If anyone knows of a good C style enforcement tool, let me know.
Diffstat (limited to 'sway/config.c')
-rw-r--r--sway/config.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sway/config.c b/sway/config.c
index 95d605a3..6d39839d 100644
--- a/sway/config.c
+++ b/sway/config.c
@@ -15,7 +15,7 @@ static bool exists(const char *path) {
15 return access(path, R_OK) != -1; 15 return access(path, R_OK) != -1;
16} 16}
17 17
18static char* get_config_path() { 18static char *get_config_path() {
19 char *name = "/.sway/config"; 19 char *name = "/.sway/config";
20 const char *home = getenv("HOME"); 20 const char *home = getenv("HOME");
21 21