comparison libvo/vo_gl.c @ 13188:f60bc2314146

small gcc warning fixes
author rathann
date Sat, 28 Aug 2004 20:59:49 +0000
parents 3cd9add91f97
children 6e8d1ac141fc
comparison
equal deleted inserted replaced
13187:ec342714b8a9 13188:f60bc2314146
360 int parse_err = 0; 360 int parse_err = 0;
361 many_fmts = 0; 361 many_fmts = 0;
362 slice_height = 4; 362 slice_height = 4;
363 if(arg) 363 if(arg)
364 { 364 {
365 char *parse_pos = &arg[0]; 365 char *parse_pos = (char *)&arg[0];
366 while (parse_pos[0] && !parse_err) { 366 while (parse_pos[0] && !parse_err) {
367 if (strncmp (parse_pos, "manyfmts", 8) == 0) { 367 if (strncmp (parse_pos, "manyfmts", 8) == 0) {
368 parse_pos = &parse_pos[8]; 368 parse_pos = &parse_pos[8];
369 many_fmts = 1; 369 many_fmts = 1;
370 } else if (strncmp (parse_pos, "slice-height=", 13) == 0) { 370 } else if (strncmp (parse_pos, "slice-height=", 13) == 0) {