Blame SOURCES/gcc44.patch

7b3626
diff -up festival/speech_tools/speech_class/EST_wave_io.cc.gcc44 festival/speech_tools/speech_class/EST_wave_io.cc
7b3626
--- festival/speech_tools/speech_class/EST_wave_io.cc.gcc44	2009-02-26 17:26:58.672421948 -0500
7b3626
+++ festival/speech_tools/speech_class/EST_wave_io.cc	2009-02-26 17:50:02.065661124 -0500
7b3626
@@ -68,7 +68,7 @@ static const char *NIST_END_SIG = "end_h
7b3626
 
7b3626
 int nist_get_param_int(const char *hdr, const char *field, int def_val)
7b3626
 {
7b3626
-    char *p;
7b3626
+    const char *p;
7b3626
     int val;
7b3626
 
7b3626
     if (((p=strstr(hdr,field)) != NULL) &&
7b3626
@@ -84,7 +84,8 @@ int nist_get_param_int(const char *hdr, 
7b3626
 
7b3626
 char *nist_get_param_str(const char *hdr, const char *field, const char *def_val)
7b3626
 {
7b3626
-    char *p,*val;
7b3626
+    const char *p;
7b3626
+    char *val;
7b3626
     int size;
7b3626
 
7b3626
     if (((p=strstr(hdr,field)) != NULL) &&