]> git.wh0rd.org Git - nano.git/commitdiff
fix compilation with --enable-debug
authorDavid Lawrence Ramsey <pooka109@gmail.com>
Thu, 16 Jun 2005 12:17:23 +0000 (12:17 +0000)
committerDavid Lawrence Ramsey <pooka109@gmail.com>
Thu, 16 Jun 2005 12:17:23 +0000 (12:17 +0000)
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@2696 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

src/chars.c
src/nano.c

index a842bcbb944dab514b0ed829ea9092930a53bcaa..0f76079e4231c0bb375db262980a4baa98dd96d4 100644 (file)
@@ -775,7 +775,7 @@ bool has_blank_chars(const char *s)
  * multibyte characters, and FALSE otherwise. */
 bool has_blank_mbchars(const char *s)
 {
-    assert(str != NULL);
+    assert(s != NULL);
 
 #ifdef NANO_WIDE
     if (ISSET(USE_UTF8)) {
index 4fe5a60dbcf802929ce8d374e3ce75cd03497ceb..307e7bd5990f13685f38b3c64abd155d0230715b 100644 (file)
@@ -2643,7 +2643,7 @@ void justify_format(filestruct *paragraph, size_t skip)
     assert(paragraph != NULL);
     assert(paragraph->data != NULL);
     assert(skip < strlen(paragraph->data));
-    assert(!is_blank_char(paragraph->data[skip]));
+    assert(!isblank(paragraph->data[skip]));
 
     end = paragraph->data + skip;
     new_paragraph_data = charalloc(strlen(paragraph->data) + 1);