From e8504c1dcecfd65acce1e93c3f3959e0b47fd11d Mon Sep 17 00:00:00 2001 From: tilghman Date: Mon, 20 Feb 2006 23:35:12 +0000 Subject: Bug 5984 - Convert file offsets to 64 bit git-svn-id: http://svn.digium.com/svn/asterisk/trunk@10579 f38db490-d61c-443f-a65b-d21fe96a405b --- formats/format_g726.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'formats/format_g726.c') diff --git a/formats/format_g726.c b/formats/format_g726.c index 717fdaf5b..70c6ac88f 100644 --- a/formats/format_g726.c +++ b/formats/format_g726.c @@ -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; } -- cgit v1.2.3