rpms/festival/devel gcc44.patch,NONE,1.1

Matthias Clasen mclasen at fedoraproject.org
Fri Feb 27 19:41:50 UTC 2009


Author: mclasen

Update of /cvs/pkgs/rpms/festival/devel
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18734

Added Files:
	gcc44.patch 
Log Message:
forgotten patch


gcc44.patch:

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




More information about the fedora-extras-commits mailing list