Blame SOURCES/aspell-0.60.6.1-gcc7-fixes.patch

fa09cd
commit 8089fa02122fed0a6394eba14bbedcb1d18e2384
fa09cd
Author: Kevin Atkinson <kevina@gnu.org>
fa09cd
Date:   Thu Dec 29 00:50:31 2016 -0500
fa09cd
fa09cd
    Compile Fixes for GCC 7.
fa09cd
    
fa09cd
    Closes #519.
fa09cd
fa09cd
diff --git a/modules/filter/tex.cpp b/modules/filter/tex.cpp
fa09cd
index a979539..19ab63c 100644
fa09cd
--- a/modules/filter/tex.cpp
fa09cd
+++ b/modules/filter/tex.cpp
fa09cd
@@ -174,7 +174,7 @@ namespace {
fa09cd
 
fa09cd
     if (c == '{') {
fa09cd
 
fa09cd
-      if (top.in_what == Parm || top.in_what == Opt || top.do_check == '\0')
fa09cd
+      if (top.in_what == Parm || top.in_what == Opt || *top.do_check == '\0')
fa09cd
 	push_command(Parm);
fa09cd
 
fa09cd
       top.in_what = Parm;
fa09cd
diff --git a/prog/check_funs.cpp b/prog/check_funs.cpp
fa09cd
index db54f3d..89ee09d 100644
fa09cd
--- a/prog/check_funs.cpp
fa09cd
+++ b/prog/check_funs.cpp
fa09cd
@@ -647,7 +647,7 @@ static void print_truncate(FILE * out, const char * word, int width) {
fa09cd
     }
fa09cd
   }
fa09cd
   if (i == width-1) {
fa09cd
-    if (word == '\0')
fa09cd
+    if (*word == '\0')
fa09cd
       put(out,' ');
fa09cd
     else if (word[len] == '\0')
fa09cd
       put(out, word, len);