aboutsummaryrefslogtreecommitdiffstats
path: root/formats
diff options
context:
space:
mode:
authorrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2006-02-21 19:20:30 +0000
committerrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2006-02-21 19:20:30 +0000
commitf1d02d5750b33cea5ac7bd233a4c8689e93808e6 (patch)
tree9455194a59c72df03d8f5e35447f16b2067df40b /formats
parentd94c9147f9d6f52381450c7b92241b7557d8e802 (diff)
suppress some compiler warnings due to recent format changes to use off_t
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@10656 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'formats')
-rw-r--r--formats/format_h264.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/formats/format_h264.c b/formats/format_h264.c
index e214d7ed4..185b2680c 100644
--- a/formats/format_h264.c
+++ b/formats/format_h264.c
@@ -221,7 +221,7 @@ static char *h264_getcomment(struct ast_filestream *s)
return NULL;
}
-static int h264_seek(struct ast_filestream *fs, long sample_offset, int whence)
+static int h264_seek(struct ast_filestream *fs, off_t sample_offset, int whence)
{
/* No way Jose */
return -1;
@@ -235,7 +235,7 @@ static int h264_trunc(struct ast_filestream *fs)
return 0;
}
-static long h264_tell(struct ast_filestream *fs)
+static off_t h264_tell(struct ast_filestream *fs)
{
/* XXX This is totally bogus XXX */
off_t offset;