[xiph-commits] r3589 - libannodex/trunk/src/importers

johnf at svn.annodex.net johnf at svn.annodex.net
Sun May 4 22:16:11 PDT 2008


Author: johnf
Date: 2008-05-04 22:16:11 -0700 (Sun, 04 May 2008)
New Revision: 3589

Modified:
   libannodex/trunk/src/importers/anx_import_ogg.c
Log:
fix syntax error in last commit

Modified: libannodex/trunk/src/importers/anx_import_ogg.c
===================================================================
--- libannodex/trunk/src/importers/anx_import_ogg.c	2008-05-05 04:20:37 UTC (rev 3588)
+++ libannodex/trunk/src/importers/anx_import_ogg.c	2008-05-05 05:16:11 UTC (rev 3589)
@@ -992,7 +992,9 @@
 
       actual_end_time = ((double)units_at) / 1000.0;
 
-      end_time = -1.0 if (end_time > actual_end_time);
+      if (end_time > actual_end_time) {
+          end_time = -1.0;
+      }
   }
 
   if (end_time == -1.0) {



More information about the commits mailing list