diff options
author | tb <tb@cvs.openbsd.org> | 2015-12-02 18:52:24 +0000 |
---|---|---|
committer | tb <tb@cvs.openbsd.org> | 2015-12-02 18:52:24 +0000 |
commit | ba0e33c67b94d84682f4458f5f750bb6736c64e9 (patch) | |
tree | ae9a1e99a40c028e9afccfea9cac5346d1509a82 | |
parent | 4a2aa34ccbd4fad0dac1c0d49e4f3131603edf40 (diff) |
KNF: I forgot to join two lines.
-rw-r--r-- | games/snake/snake.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/games/snake/snake.c b/games/snake/snake.c index 0ccaf1d2cc9..5ea9636e6b3 100644 --- a/games/snake/snake.c +++ b/games/snake/snake.c @@ -1,4 +1,4 @@ -/* $OpenBSD: snake.c,v 1.19 2015/12/02 18:46:13 tb Exp $ */ +/* $OpenBSD: snake.c,v 1.20 2015/12/02 18:52:23 tb Exp $ */ /* $NetBSD: snake.c,v 1.8 1995/04/29 00:06:41 mycroft Exp $ */ /* @@ -154,8 +154,7 @@ main(int argc, char *argv[]) if (home == NULL || *home == '\0') err(1, "getenv"); - snprintf(logpath, sizeof(logpath), "%s/%s", home, - ".snake.log"); + snprintf(logpath, sizeof(logpath), "%s/%s", home, ".snake.log"); logfile = fopen(logpath, "a"); #endif |