]> git.wh0rd.org Git - nano.git/commitdiff
another cosmetic fix
authorDavid Lawrence Ramsey <pooka109@gmail.com>
Wed, 18 Apr 2007 19:25:00 +0000 (19:25 +0000)
committerDavid Lawrence Ramsey <pooka109@gmail.com>
Wed, 18 Apr 2007 19:25:00 +0000 (19:25 +0000)
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@4083 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

src/files.c

index 6eaee408b8ad0ba0472eb8ee175f3777a2c257b8..1b02c4774b97eb552fbf09a3009b30c56e06b420 100644 (file)
@@ -1904,10 +1904,12 @@ bool do_writeout(bool exiting)
                full_filename = get_full_path(openfile->filename);
                name_exists = (stat((full_answer == NULL) ? answer :
                        full_answer, &st) != -1);
-               do_warning = ((openfile->filename[0] == '\0' &&
-                       name_exists) || (strcmp((full_answer == NULL) ?
+               if (openfile->filename[0] == '\0')
+                   do_warning = name_exists;
+               else
+                   do_warning = (strcmp((full_answer == NULL) ?
                        answer : full_answer, (full_filename == NULL) ?
-                       openfile->filename : full_filename) != 0));
+                       openfile->filename : full_filename) != 0);
 
                /* Convert nulls to newlines.  answer_len is the
                 * string's real length. */