diff options
author | phintuka <phintuka> | 2009-06-04 13:13:39 +0000 |
---|---|---|
committer | phintuka <phintuka> | 2009-06-04 13:13:39 +0000 |
commit | 9e6cc9f8d9959c422d9c26b4f333eb45fdf04264 (patch) | |
tree | 9cd602de36464848532781a658b7fa45a828fba4 | |
parent | 8c35c02008fd06accfdefd2147095207ceab248c (diff) | |
download | xineliboutput-unlabeled-1.58.2.tar.gz xineliboutput-unlabeled-1.58.2.tar.bz2 |
Merge from trunk:unlabeled-1.58.2
revision 1.70
date: 2009/05/29 15:09:10; author: phintuka; state: Exp; lines: +2 -2
Fixed invalid cast
-rw-r--r-- | setup_menu.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/setup_menu.c b/setup_menu.c index 646d9eea..c377d0ff 100644 --- a/setup_menu.c +++ b/setup_menu.c @@ -4,7 +4,7 @@ * See the main source file 'xineliboutput.c' for copyright information and * how to reach the author. * - * $Id: setup_menu.c,v 1.58.2.1 2008-10-18 10:41:06 phintuka Exp $ + * $Id: setup_menu.c,v 1.58.2.2 2009-06-04 13:13:39 phintuka Exp $ * */ @@ -456,7 +456,7 @@ struct tvtime_s { judder_correction = strstr(str, "judder_correction=0") ? 0 : 1; use_progressive_frame_flag = strstr(str, "use_progressive_frame_flag=0") ? 0 : 1; method=1; - char *m = strstr(str, "method="); + const char *m = strstr(str, "method="); if(m) { char *tmp = strdup(m + 7); if(strchr(tmp, ',')) |