summaryrefslogtreecommitdiff
path: root/formats/format_g726.c
diff options
context:
space:
mode:
authorTilghman Lesher <tilghman@meg.abyt.es>2006-02-20 23:35:12 +0000
committerTilghman Lesher <tilghman@meg.abyt.es>2006-02-20 23:35:12 +0000
commitaa20c556f75ec1556e58259ff2168a26bc574b31 (patch)
tree867b95de4af325e2b9e52f635b10137ffde176ba /formats/format_g726.c
parent67e55d4d67cde1495dfa2c3f8cad7ba61ed6bf50 (diff)
Bug 5984 - Convert file offsets to 64 bit
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@10579 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'formats/format_g726.c')
-rw-r--r--formats/format_g726.c4
1 files changed, 2 insertions, 2 deletions
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;
}