]> git.wh0rd.org Git - nano.git/commitdiff
yet another cosmetic fix
authorDavid Lawrence Ramsey <pooka109@gmail.com>
Wed, 22 Dec 2004 21:38:43 +0000 (21:38 +0000)
committerDavid Lawrence Ramsey <pooka109@gmail.com>
Wed, 22 Dec 2004 21:38:43 +0000 (21:38 +0000)
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@2192 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

src/search.c

index ee105f8ef7dad979f4718ef93b7ff0d5750ec872..29ad8127c33a4d364cabfcf08b76fdb4eba49329 100644 (file)
@@ -87,7 +87,7 @@ void not_found_msg(const char *str)
     numchars = strnlen(disp, COLS / 2);
 
     statusbar(_("\"%.*s%s\" not found"), numchars, disp,
-       disp[numchars] == '\0' ? "" : "...");
+       (disp[numchars] == '\0') ? "" : "...");
 
     free(disp);
 }