summaryrefslogtreecommitdiffstats
path: root/gst/vbidec/vbiscreen.c
diff options
context:
space:
mode:
Diffstat (limited to 'gst/vbidec/vbiscreen.c')
-rw-r--r--gst/vbidec/vbiscreen.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gst/vbidec/vbiscreen.c b/gst/vbidec/vbiscreen.c
index 189591f1..bc315587 100644
--- a/gst/vbidec/vbiscreen.c
+++ b/gst/vbidec/vbiscreen.c
@@ -506,7 +506,7 @@ void vbiscreen_set_current_cell( vbiscreen_t *vs, char text )
int base;
if( !vs ) return;
base = ( ( vs->top_of_screen + vs->cury ) % ( 2 * ROWS ) ) * COLS;
- if( isprint( text ) )
+ if( g_ascii_isprint( text ) )
vs->text[ base + vs->curx + vs->indent ] = text;
else
vs->text[ base + vs->curx + vs->indent ] = ' ';