mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-05 20:20:07 +00:00
Bug 5984 - Convert file offsets to 64 bit
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@10579 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -391,7 +391,7 @@ static char *g726_getcomment(struct ast_filestream *s)
|
||||
return NULL;
|
||||
}
|
||||
|
||||
static int g726_seek(struct ast_filestream *fs, long sample_offset, int whence)
|
||||
static int g726_seek(struct ast_filestream *fs, off_t sample_offset, int whence)
|
||||
{
|
||||
return -1;
|
||||
}
|
||||
@@ -401,7 +401,7 @@ static int g726_trunc(struct ast_filestream *fs)
|
||||
return -1;
|
||||
}
|
||||
|
||||
static long g726_tell(struct ast_filestream *fs)
|
||||
static off_t g726_tell(struct ast_filestream *fs)
|
||||
{
|
||||
return -1;
|
||||
}
|
||||
|
Reference in New Issue
Block a user