From 352801cf4cde35fe773c091e287a878b550b8da8 Mon Sep 17 00:00:00 2001 From: Chris Allegretta Date: Fri, 28 Sep 2001 19:42:41 +0000 Subject: [PATCH] Fix brace error with nano-tiny in do_writeout() git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@797 35c25a1d-7b9e-4130-9fde-d3aeb78583b8 --- files.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/files.c b/files.c index bdd037e0..a2e5d08d 100644 --- a/files.c +++ b/files.c @@ -1294,8 +1294,9 @@ int do_writeout(char *path, int exiting, int append) else i = statusq(1, writefile_list, WRITEFILE_LIST_LEN, "", _("Write Selection to File")); - } else { + } else #endif + { if (append) i = statusq(1, writefile_list, WRITEFILE_LIST_LEN, answer, _("File Name to Append")); -- 2.39.5