diff options
Diffstat (limited to 'gst')
-rw-r--r-- | gst/festival/gstfestival.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gst/festival/gstfestival.c b/gst/festival/gstfestival.c index aac100bf..699f0fbc 100644 --- a/gst/festival/gstfestival.c +++ b/gst/festival/gstfestival.c @@ -212,7 +212,7 @@ text_type_find (GstBuffer *buf, gpointer private) gint i; for (i=0; i<GST_BUFFER_SIZE (buf); i++) { - if (!isascii(*(data+i))) + if (!isprint(*(data+i))) return NULL; } |