Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 271607
Collapse All | Expand All

(-)speech_tools/speech_class/EST_wave_io.cc.orig (-2 / +3 lines)
Lines 68-74 Link Here
68
68
69
int nist_get_param_int(const char *hdr, const char *field, int def_val)
69
int nist_get_param_int(const char *hdr, const char *field, int def_val)
70
{
70
{
71
    char *p;
71
    const char *p;
72
    int val;
72
    int val;
73
73
74
    if (((p=strstr(hdr,field)) != NULL) &&
74
    if (((p=strstr(hdr,field)) != NULL) &&
Lines 84-90 Link Here
84
84
85
char *nist_get_param_str(const char *hdr, const char *field, const char *def_val)
85
char *nist_get_param_str(const char *hdr, const char *field, const char *def_val)
86
{
86
{
87
    char *p,*val;
87
    const char *p;
88
    char *val;
88
    int size;
89
    int size;
89
90
90
    if (((p=strstr(hdr,field)) != NULL) &&
91
    if (((p=strstr(hdr,field)) != NULL) &&

Return to bug 271607