[xiph-commits] r14479 - trunk/vorbis-tools/ogg123

ivo at svn.xiph.org ivo at svn.xiph.org
Mon Feb 11 12:37:13 PST 2008


Author: ivo
Date: 2008-02-11 12:37:13 -0800 (Mon, 11 Feb 2008)
New Revision: 14479

Modified:
   trunk/vorbis-tools/ogg123/ogg123.h
Log:
Patch by Christian Weisgerber to fix possible problems in 64bit systems with "int shuffle" and "int repeat".

Modified: trunk/vorbis-tools/ogg123/ogg123.h
===================================================================
--- trunk/vorbis-tools/ogg123/ogg123.h	2008-02-11 20:17:26 UTC (rev 14478)
+++ trunk/vorbis-tools/ogg123/ogg123.h	2008-02-11 20:37:13 UTC (rev 14479)
@@ -25,8 +25,8 @@
 typedef struct ogg123_options_t {
   long int verbosity;         /* Verbose output if > 1, quiet if 0 */
 
-  int shuffle;                /* Should we shuffle playing? */
-  int repeat;                 /* Repeat playlist indefinitely? */
+  long int shuffle;           /* Should we shuffle playing? */
+  long int repeat;            /* Repeat playlist indefinitely? */
   ogg_int64_t delay;          /* delay (in millisecs) for skip to next song */
   int nth;                    /* Play every nth chunk */
   int ntimes;                 /* Play every chunk n times */



More information about the commits mailing list