diff options
author | Drew DeVault <sir@cmpwn.com> | 2018-03-27 16:01:29 -0400 |
---|---|---|
committer | Drew DeVault <sir@cmpwn.com> | 2018-03-28 14:25:19 -0400 |
commit | 53e3763b58575cda89562d0fa1a4f9270a9c74f6 (patch) | |
tree | 5beadfc38f27cba127eecce8492d0ef03be09f3a /client | |
parent | 17e39f6291a62575437ce73bd61441bf21865622 (diff) |
Fix style
Diffstat (limited to 'client')
-rw-r--r-- | client/buffer-pool.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/buffer-pool.c b/client/buffer-pool.c index 26d0f7e5..7f673ae9 100644 --- a/client/buffer-pool.c +++ b/client/buffer-pool.c @@ -13,7 +13,7 @@ static int create_pool_file(size_t size, char **name) { static const char template[] = "sway-client-XXXXXX"; const char *path = getenv("XDG_RUNTIME_DIR"); - if (!path) { + if (!path) { return -1; } |