]> git.wh0rd.org Git - nano.git/commitdiff
another cosmetic fix
authorDavid Lawrence Ramsey <pooka109@gmail.com>
Sun, 8 May 2005 17:08:51 +0000 (17:08 +0000)
committerDavid Lawrence Ramsey <pooka109@gmail.com>
Sun, 8 May 2005 17:08:51 +0000 (17:08 +0000)
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@2503 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

src/search.c

index ac8888e8a397d8b72c859af089eb1a368150910c..b7210b2600d9067d1d9e10ed0f59923a1d9ce48d 100644 (file)
@@ -1150,9 +1150,10 @@ void history_init(void)
 /* find first node containing string *s in history list *h */
 historytype *find_node(historytype *h, const char *s)
 {
-    for (; h->next != NULL; h = h->next)
+    for (; h->next != NULL; h = h->next) {
        if (strcmp(s, h->data) == 0)
            return h;
+    }
     return NULL;
 }