changeset 2335:6b9d5a8b509e

automated merge
author mf0102 <0102@gmx.at>
date Wed, 23 Jan 2008 14:12:02 +0100
parents 0dd31200a33a (current diff) 1a4f8ea5eb2a (diff)
children ad45d65e9ae7
files
diffstat 2 files changed, 4 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/src/aac/libfaad2/cfft.c	Wed Jan 23 14:11:29 2008 +0100
+++ b/src/aac/libfaad2/cfft.c	Wed Jan 23 14:12:02 2008 +0100
@@ -849,12 +849,12 @@
 
 void cfftf(cfft_info *cfft, complex_t *c)
 {
-    cfftf1neg(cfft->n, c, cfft->work, (const uint16_t*)cfft->ifac, (const complex_t*)(void*)&(cfft->tab), -1);
+    cfftf1neg(cfft->n, c, cfft->work, (const uint16_t*)cfft->ifac, (const complex_t*)(void*)cfft->tab, -1);
 }
 
 void cfftb(cfft_info *cfft, complex_t *c)
 {
-    cfftf1pos(cfft->n, c, cfft->work, (const uint16_t*)cfft->ifac, (const complex_t*)(void*)&(cfft->tab), +1);
+    cfftf1pos(cfft->n, c, cfft->work, (const uint16_t*)cfft->ifac, (const complex_t*)(void*)cfft->tab, +1);
 }
 
 static void cffti1(uint16_t n, complex_t *wa, uint16_t *ifac)
--- a/src/neon/neon.c	Wed Jan 23 14:11:29 2008 +0100
+++ b/src/neon/neon.c	Wed Jan 23 14:12:02 2008 +0100
@@ -552,9 +552,9 @@
 
         default:
             /* Something went wrong. */
-            _ERROR("<%p> Could not open URL: %d", ret);
+            _ERROR("<%p> Could not open URL: %d", handle, ret);
             if (1 == ret) {
-                _ERROR("<%p> neon error string: %s", ne_get_error(handle->session));
+                _ERROR("<%p> neon error string: %s", handle, ne_get_error(handle->session));
             }
             ne_request_destroy(handle->request);
             _LEAVE -1;