summaryrefslogtreecommitdiff
path: root/src/input/input_dvb.c
diff options
context:
space:
mode:
authorDarren Salt <linux@youmustbejoking.demon.co.uk>2006-02-14 18:41:43 +0000
committerDarren Salt <linux@youmustbejoking.demon.co.uk>2006-02-14 18:41:43 +0000
commit5df1a2f6bb4caa7db5abad0879fd0d6d4e0bb657 (patch)
treefad8d18e497dbda1c6ee1ff0ff61c1aa9a464baa /src/input/input_dvb.c
parent7a1df8370c3fa8ae1d6748863d58df4c79c33a5d (diff)
downloadxine-lib-5df1a2f6bb4caa7db5abad0879fd0d6d4e0bb657.tar.gz
xine-lib-5df1a2f6bb4caa7db5abad0879fd0d6d4e0bb657.tar.bz2
Kill a printf() warning.
CVS patchset: 7892 CVS date: 2006/02/14 18:41:43
Diffstat (limited to 'src/input/input_dvb.c')
-rw-r--r--src/input/input_dvb.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/input/input_dvb.c b/src/input/input_dvb.c
index 842f96a49..771612a5a 100644
--- a/src/input/input_dvb.c
+++ b/src/input/input_dvb.c
@@ -1518,7 +1518,7 @@ static void load_epg_data(dvb_input_plugin_t *this)
"CHILDRENS","MUSIC","ARTS/CULTURE","CURRENT AFFAIRS",
"EDUCATIONAL","INFOTAINMENT","SPECIAL","COMEDY","DRAMA",
"DOCUMENTARY","UNK"};
- snprintf(current_epg->content, MAX_EPG_CONTENT_TYPE_LENGTH, content[content_bits]);
+ snprintf(current_epg->content, MAX_EPG_CONTENT_TYPE_LENGTH, "%s", content[content_bits]);
}
break;
case 0x55: { /* Parental Rating descriptor describes minimum recommened age -3 */