summaryrefslogtreecommitdiffstats
path: root/audio
diff options
context:
space:
mode:
authorJohan Hedberg <johan.hedberg@nokia.com>2007-08-21 13:41:56 +0000
committerJohan Hedberg <johan.hedberg@nokia.com>2007-08-21 13:41:56 +0000
commitab0c221fff20faaaf6060679f8002d65ecb36253 (patch)
tree95a81acd802df3306dfd906a49c2da69543352b2 /audio
parentca4300477c8c1908803952fafedcba35dd2bae0a (diff)
memcpy_changeendian shouldn't be public
Diffstat (limited to 'audio')
-rw-r--r--audio/pcm_bluetooth.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/audio/pcm_bluetooth.c b/audio/pcm_bluetooth.c
index b971d0ea..425d27fb 100644
--- a/audio/pcm_bluetooth.c
+++ b/audio/pcm_bluetooth.c
@@ -109,7 +109,7 @@ struct bluetooth_data {
struct bluetooth_a2dp a2dp; /* a2dp data */
};
-void memcpy_changeendian(void *dst, const void *src, int size)
+static void memcpy_changeendian(void *dst, const void *src, int size)
{
int i;
const uint16_t *ptrsrc = src;