Commit 360191c4 authored by David Lawrence Ramsey's avatar David Lawrence Ramsey
Browse files

consistency fix

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@1957 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
No related merge requests found
Showing with 3 additions and 3 deletions
+3 -3
......@@ -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 = "";
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment