]> git.wh0rd.org Git - nano.git/commitdiff
add a cosmetic fix and a fix for a potential compilation problem exposed
authorDavid Lawrence Ramsey <pooka109@gmail.com>
Fri, 7 Jan 2005 22:37:01 +0000 (22:37 +0000)
committerDavid Lawrence Ramsey <pooka109@gmail.com>
Fri, 7 Jan 2005 22:37:01 +0000 (22:37 +0000)
by -pedantic

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@2241 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

src/nano.c
src/winio.c

index 139a29cb627ba878cd8ba213861f77e74f6ab057..b9ba1cd93f65f3b4667f8ab1e601c2d9c901f35d 100644 (file)
@@ -2512,7 +2512,7 @@ bool breakable(const char *line, ssize_t goal)
 
     /* If goal is not negative, the whole line (one word) was short
      * enough. */
-    return goal >= 0;
+    return (goal >= 0);
 }
 
 /* We are trying to break a chunk off line.  We find the last space such
index a86f771de47b548477f4ac5e5f2819641a4725d1..36868c98ec35bda73e3e75d54b40081f188c04ca 100644 (file)
@@ -3056,10 +3056,10 @@ void bottombars(const shortcut *s)
  * the whole string!  We do not bother padding the entry with blanks. */
 void onekey(const char *keystroke, const char *desc, size_t len)
 {
-    assert(keystroke != NULL && desc != NULL);
-
     size_t keystroke_len = strlenpt(keystroke) + 1;
 
+    assert(keystroke != NULL && desc != NULL);
+
     wattron(bottomwin, A_REVERSE);
     waddnstr(bottomwin, keystroke, actual_x(keystroke, len));
     wattroff(bottomwin, A_REVERSE);