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

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