diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2009-02-18 21:20:02 +0000 |
---|---|---|
committer | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2009-02-18 21:20:02 +0000 |
commit | 2ba5628939ee3bb5952b825def28adb0e74d5459 (patch) | |
tree | a9ea576aea49ec06b974f0b2b44ddd037f32d591 | |
parent | eecc17a7d5281209dcb67dae21ad1de978f3d0ed (diff) | |
download | ffmpeg-2ba5628939ee3bb5952b825def28adb0e74d5459.tar.gz |
Add const qualifier to the error var, fix warnings.
Originally committed as revision 17435 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | vhook/imlib2.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vhook/imlib2.c b/vhook/imlib2.c index e371f383b9..fad61ddf1b 100644 --- a/vhook/imlib2.c +++ b/vhook/imlib2.c @@ -151,7 +151,7 @@ int Configure(void **ctxp, int argc, char *argv[]) char *color = 0; FILE *f; char *p; - char *error; + const char *error; *ctxp = av_mallocz(sizeof(ContextInfo)); ci = (ContextInfo *) *ctxp; |