summaryrefslogtreecommitdiff
path: root/libavcodec/flac.c
diff options
context:
space:
mode:
authorZdenek Kabelac <kabi@informatics.muni.cz>2004-03-05 14:08:33 +0000
committerZdenek Kabelac <kabi@informatics.muni.cz>2004-03-05 14:08:33 +0000
commit62c438a241ff9cb31080c5f0a69071615af2a475 (patch)
tree53f2a3cc444cbd1fd81da7626eaf7d29a4fcdb5d /libavcodec/flac.c
parentb0df362b11759d3140c64a9c89b4b2417e1bb0e0 (diff)
* const warn elimintation
Originally committed as revision 2845 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/flac.c')
-rw-r--r--libavcodec/flac.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/flac.c b/libavcodec/flac.c
index 6fc8bf7dfd..5f87cff922 100644
--- a/libavcodec/flac.c
+++ b/libavcodec/flac.c
@@ -133,7 +133,7 @@ static int64_t get_utf8(GetBitContext *gb)
return val;
}
-static int get_crc8(uint8_t *buf, int count){
+static int get_crc8(const uint8_t *buf, int count){
int crc=0;
int i;