aboutsummaryrefslogtreecommitdiffstats
path: root/formats/format_pcm_alaw.c
diff options
context:
space:
mode:
authorkpfleming <kpfleming@f38db490-d61c-443f-a65b-d21fe96a405b>2006-02-23 18:00:50 +0000
committerkpfleming <kpfleming@f38db490-d61c-443f-a65b-d21fe96a405b>2006-02-23 18:00:50 +0000
commit12deb3bf4d363a1996a4eb497037565a05493d94 (patch)
tree604525f61a6b240013652a7c307ed66a3d384bb9 /formats/format_pcm_alaw.c
parent9c4950dff36fc6083132969ac592045c5cda464e (diff)
silence some more compiler warnings
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@10877 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'formats/format_pcm_alaw.c')
-rw-r--r--formats/format_pcm_alaw.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/formats/format_pcm_alaw.c b/formats/format_pcm_alaw.c
index de90ce2da..af1705f79 100644
--- a/formats/format_pcm_alaw.c
+++ b/formats/format_pcm_alaw.c
@@ -276,7 +276,7 @@ static int pcm_seek(struct ast_filestream *fs, off_t sample_offset, int whence)
if (offset < 0) {
offset = 0;
- ast_log(LOG_WARNING, "negative offset %ld, resetting to 0\n", offset);
+ ast_log(LOG_WARNING, "negative offset %ld, resetting to 0\n", (long) offset);
}
if (whence == SEEK_FORCECUR && offset > max) {
size_t left = offset - max;
@@ -291,7 +291,7 @@ static int pcm_seek(struct ast_filestream *fs, off_t sample_offset, int whence)
ret = 0; /* success */
} else {
if (offset > max) {
- ast_log(LOG_WARNING, "offset too large %ld, truncating to %ld\n", offset, max);
+ ast_log(LOG_WARNING, "offset too large %ld, truncating to %ld\n", (long) offset, (long) max);
offset = max;
}
ret = fseeko(fs->f, offset, SEEK_SET);