[xiph-commits] r15337 - trunk/cdparanoia
xiphmont at svn.xiph.org
xiphmont at svn.xiph.org
Tue Sep 23 15:35:49 PDT 2008
Author: xiphmont
Date: 2008-09-23 15:35:49 -0700 (Tue, 23 Sep 2008)
New Revision: 15337
Modified:
trunk/cdparanoia/Makefile.in
trunk/cdparanoia/main.c
Log:
Commit fix to make debug (no optimization, please)
Commit fix to -p not actually outputting in host byte order (in fact,
it always get s it reversed regardless of endianness)
Modified: trunk/cdparanoia/Makefile.in
===================================================================
--- trunk/cdparanoia/Makefile.in 2008-09-22 16:05:30 UTC (rev 15336)
+++ trunk/cdparanoia/Makefile.in 2008-09-23 22:35:49 UTC (rev 15337)
@@ -10,7 +10,7 @@
@SET_MAKE@
FLAGS=@TYPESIZES@ @CFLAGS@
OPT=@OPT@ $(FLAGS)
-DEBUG=@DEBUG@ $(FLAGS)
+DEBUG=@DEBUG@
CC=@CC@
LD=@CC@
LDFLAGS=@LDFLAGS@ $(FLAGS)
Modified: trunk/cdparanoia/main.c
===================================================================
--- trunk/cdparanoia/main.c 2008-09-22 16:05:30 UTC (rev 15336)
+++ trunk/cdparanoia/main.c 2008-09-23 22:35:49 UTC (rev 15337)
@@ -746,7 +746,7 @@
break;
case 'p':
output_type=0;
- output_endian=-1;
+ output_endian=bigendianp();
break;
case 'r':
output_type=0;
More information about the commits
mailing list