aboutsummaryrefslogtreecommitdiffstats
path: root/include/asterisk/frame.h
diff options
context:
space:
mode:
authorkpfleming <kpfleming@f38db490-d61c-443f-a65b-d21fe96a405b>2005-04-04 02:13:40 +0000
committerkpfleming <kpfleming@f38db490-d61c-443f-a65b-d21fe96a405b>2005-04-04 02:13:40 +0000
commitfc3600f9e402828a63873da8791c64cf55cb6a41 (patch)
tree266979565610885c9870cb62aacc630269e74999 /include/asterisk/frame.h
parent33add137fbfb4c551575252a0596bf7232a6e9a5 (diff)
fix breakage from slin endianness commit earlier today (sorry :-()
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@5375 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'include/asterisk/frame.h')
-rwxr-xr-xinclude/asterisk/frame.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/asterisk/frame.h b/include/asterisk/frame.h
index 88eb6d5c7..7be514610 100755
--- a/include/asterisk/frame.h
+++ b/include/asterisk/frame.h
@@ -301,7 +301,7 @@ int ast_fr_fdwrite(int fd, struct ast_frame *frame);
*/
int ast_fr_fdhangup(int fd);
-void ast_swapcopy_samples(void *dst, void *src, int samples);
+void ast_swapcopy_samples(void *dst, const void *src, int samples);
/* Helpers for byteswapping native samples to/from
little-endian and big-endian. */