consistency fix

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@1957 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
master
David Lawrence Ramsey 2004-10-01 21:37:36 +00:00
parent ca744153fd
commit 360191c434
1 changed files with 3 additions and 3 deletions

View File

@ -1776,10 +1776,10 @@ int do_writeout(int exiting)
char *ans = mallocstrcpy(NULL, answer);
const char *formatstr, *backupstr;
if (ISSET(MAC_FILE))
formatstr = N_(" [Mac Format]");
else if (ISSET(DOS_FILE))
if (ISSET(DOS_FILE))
formatstr = N_(" [DOS Format]");
else if (ISSET(MAC_FILE))
formatstr = N_(" [Mac Format]");
else
formatstr = "";