[MPlayer-cvslog] CVS: main subopt-helper.c,1.9,1.10
Reimar Döffinger CVS
syncmail at mplayerhq.hu
Tue Oct 11 10:50:35 CEST 2005
CVS change done by Reimar Döffinger CVS
Update of /cvsroot/mplayer/main
In directory mail:/var2/tmp/cvs-serv15331
Modified Files:
subopt-helper.c
Log Message:
1l, strtof is only C99, strtod is ANSI C, so use that instead.
Index: subopt-helper.c
===================================================================
RCS file: /cvsroot/mplayer/main/subopt-helper.c,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- subopt-helper.c 10 Oct 2005 12:56:44 -0000 1.9
+++ subopt-helper.c 11 Oct 2005 08:50:32 -0000 1.10
@@ -258,7 +258,7 @@
assert( str && "parse_float(): str == NULL" );
- *valp = strtof( str, &endp );
+ *valp = strtod( str, &endp );
/* nothing was converted */
if ( str == endp ) { return NULL; }
More information about the MPlayer-cvslog
mailing list