comparison libvo/vo_caca.c @ 24032:144162149176

Fix likely mistake when using char*.
author cehoyos
date Mon, 13 Aug 2007 08:32:47 +0000
parents 98eaf29b5dee
children 7e2808fb1807
comparison
equal deleted inserted replaced
24031:f063ae070088 24032:144162149176
175 if (showosdmessage) 175 if (showosdmessage)
176 { 176 {
177 if (time(NULL) >= stoposd) 177 if (time(NULL) >= stoposd)
178 { 178 {
179 showosdmessage = 0; 179 showosdmessage = 0;
180 if (posbar) 180 if (*posbar)
181 posbar[0] = '\0'; 181 posbar[0] = '\0';
182 } else { 182 } else {
183 caca_putstr(osdx, osdy, osdmessagetext); 183 caca_putstr(osdx, osdy, osdmessagetext);
184 184
185 if (posbar) 185 if (*posbar)
186 caca_putstr(0, posbary, posbar); 186 caca_putstr(0, posbary, posbar);
187 } 187 }
188 } 188 }
189 189
190 caca_refresh(); 190 caca_refresh();