[xiph-cvs] cvs commit: vorbis-tools/ogg123 buffer.c

Stan Seibert volsung at xiph.org
Sat May 3 07:24:33 PDT 2003



volsung     03/05/03 10:24:33

  Modified:    ogg123   buffer.c
  Log:
  Do not translate function name passed to perror().  Fixes bug #336.

Revision  Changes    Path
1.20      +2 -2      vorbis-tools/ogg123/buffer.c

Index: buffer.c
===================================================================
RCS file: /usr/local/cvsroot/vorbis-tools/ogg123/buffer.c,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -r1.19 -r1.20
--- buffer.c	14 Jul 2002 05:38:00 -0000	1.19
+++ buffer.c	3 May 2003 14:24:33 -0000	1.20
@@ -11,7 +11,7 @@
  *                                                                  *
  ********************************************************************
 
- last mod: $Id: buffer.c,v 1.19 2002/07/14 05:38:00 volsung Exp $
+ last mod: $Id: buffer.c,v 1.20 2003/05/03 14:24:33 volsung Exp $
 
  ********************************************************************/
 
@@ -360,7 +360,7 @@
   buf_t *buf = malloc (sizeof(buf_t) + sizeof (char) * (size - 1));
 
   if (buf == NULL) {
-      perror (_("malloc"));
+      perror ("malloc");
       exit(1);
   }
 

<p><p>--- >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