mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-05 20:20:07 +00:00
suppress some compiler warnings due to recent format changes to use off_t
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@10656 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -221,7 +221,7 @@ static char *h264_getcomment(struct ast_filestream *s)
|
|||||||
return NULL;
|
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 */
|
/* No way Jose */
|
||||||
return -1;
|
return -1;
|
||||||
@@ -235,7 +235,7 @@ static int h264_trunc(struct ast_filestream *fs)
|
|||||||
return 0;
|
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 */
|
/* XXX This is totally bogus XXX */
|
||||||
off_t offset;
|
off_t offset;
|
||||||
|
Reference in New Issue
Block a user