Update of /cvsroot/xine/xine-lib/src/libfaad
In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv25254/src/libfaad

Modified Files:
        xine_decoder.c 
Log Message:
Fix a lot of format warnings in lprintf calls (mostly %ldd -> %"PRId64").

Index: xine_decoder.c
===================================================================
RCS file: /cvsroot/xine/xine-lib/src/libfaad/xine_decoder.c,v
retrieving revision 1.48
retrieving revision 1.49
diff -u -r1.48 -r1.49
--- xine_decoder.c      10 Jul 2006 22:08:29 -0000      1.48
+++ xine_decoder.c      20 Feb 2007 00:34:57 -0000      1.49
@@ -140,7 +140,7 @@
                 _("libfaad: libfaad NeAACDecInit2 failed.\n"));
         this->faac_failed++;
       } else
-        lprintf( "NeAACDecInit2 returned rate=%ld channels=%d\n",
+        lprintf( "NeAACDecInit2 returned rate=%"PRId32" channels=%d\n",
                  this->rate, this->num_channels );
     } else {
       used = NeAACDecInit(this->faac_dec, this->buf, this->size,
@@ -151,7 +151,7 @@
                   _("libfaad: libfaad NeAACDecInit failed.\n"));
         this->faac_failed++;
       } else {
-        lprintf( "NeAACDecInit() returned rate=%ld channels=%d (used=%d)\n",
+        lprintf( "NeAACDecInit() returned rate=%"PRId32" channels=%d 
(used=%d)\n",
                  this->rate, this->num_channels, used);
                       
         this->size -= used;
@@ -239,7 +239,7 @@
         this->num_channels = this->faac_finfo.channels;
         this->rate = this->faac_finfo.samplerate;
        
-        lprintf("faacDecDecode() returned rate=%ld channels=%d used=%d\n",
+        lprintf("faacDecDecode() returned rate=%"PRId32" channels=%d 
used=%d\n",
                 this->rate, this->num_channels, used);
       
         this->stream->audio_out->close (this->stream->audio_out, this->stream);


-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
Xine-cvslog mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/xine-cvslog

Reply via email to