[xiph-cvs] cvs commit: ogg-tools/oggmerge mngread.c

Ralph Giles giles at xiph.org
Mon Sep 3 19:15:54 PDT 2001



giles       01/09/03 19:15:53

  Modified:    oggmerge mngread.c
  Log:
  Fix typo

Revision  Changes    Path
1.2       +1 -1      ogg-tools/oggmerge/mngread.c

Index: mngread.c
===================================================================
RCS file: /usr/local/cvsroot/ogg-tools/oggmerge/mngread.c,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- mngread.c	2001/08/25 22:22:31	1.1
+++ mngread.c	2001/09/04 02:15:53	1.2
@@ -101,7 +101,7 @@
                    so we read as a chars and unpack in an
                    endian-independent way. */
                 fread(lenb, 1, 4, param->in);
-		length = (lenb[0]&&0xFF) << 24 | 
+		length = (lenb[0]&0xFF) << 24 | 
                         (lenb[1]&0xFF) << 16 |
                         (lenb[2]&0xFF) << 8 |
                         (lenb[3]&0xFF);

--- >8 ----
List archives:  http://www.xiph.org/archives/
Ogg project homepage: http://www.xiph.org/ogg/
To unsubscribe from this list, send a message to 'cvs-request at xiph.org'
containing only the word 'unsubscribe' in the body.  No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.



More information about the commits mailing list