diff options
author | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2006-11-16 00:29:15 +0000 |
---|---|---|
committer | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2006-11-16 00:29:15 +0000 |
commit | 3666f75d336191578d84d790cccfae03da00f9f2 (patch) | |
tree | e7cb2a0ee8f14b1324ed74bbc480a0c50a940cf8 /libavutil/log.h | |
parent | 9c9143989b2d3103a15e055892d3a442c5cf99ea (diff) | |
download | ffmpeg-3666f75d336191578d84d790cccfae03da00f9f2.tar.gz |
make option field const
Originally committed as revision 7093 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavutil/log.h')
-rw-r--r-- | libavutil/log.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavutil/log.h b/libavutil/log.h index 2c159c2eaf..0ff1f9fcff 100644 --- a/libavutil/log.h +++ b/libavutil/log.h @@ -33,7 +33,7 @@ struct AVCLASS { or AVFormatContext, which begin with an AVClass. Needed because av_log is in libavcodec and has no visibility of AVIn/OutputFormat */ - struct AVOption *option; + const struct AVOption *option; }; /* av_log API */ |