diff options
author | Johan Hedberg <johan.hedberg@nokia.com> | 2007-08-21 13:41:56 +0000 |
---|---|---|
committer | Johan Hedberg <johan.hedberg@nokia.com> | 2007-08-21 13:41:56 +0000 |
commit | ab0c221fff20faaaf6060679f8002d65ecb36253 (patch) | |
tree | 95a81acd802df3306dfd906a49c2da69543352b2 /audio | |
parent | ca4300477c8c1908803952fafedcba35dd2bae0a (diff) |
memcpy_changeendian shouldn't be public
Diffstat (limited to 'audio')
-rw-r--r-- | audio/pcm_bluetooth.c | 2 |
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; |