summaryrefslogtreecommitdiff
path: root/sway/config.c
diff options
context:
space:
mode:
authorDrew DeVault <[email protected]>2015-08-18 07:19:20 -0400
committerDrew DeVault <[email protected]>2015-08-18 07:20:34 -0400
commit2139001c9f61a84ed1ac581a54bb2bde68928afd (patch)
treea6efb486fdb71675775253d79e9550b5fc1d2f67 /sway/config.c
parentaf1b3d97550c749de4e71f50784dc17f1a31c135 (diff)
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) {
return access(path, R_OK) != -1;
}
-static char* get_config_path() {
+static char *get_config_path() {
char *name = "/.sway/config";
const char *home = getenv("HOME");