Commit 2ba56289 authored by Stefano Sabatini's avatar Stefano Sabatini

Add const qualifier to the error var, fix warnings.

Originally committed as revision 17435 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent eecc17a7
...@@ -151,7 +151,7 @@ int Configure(void **ctxp, int argc, char *argv[]) ...@@ -151,7 +151,7 @@ int Configure(void **ctxp, int argc, char *argv[])
char *color = 0; char *color = 0;
FILE *f; FILE *f;
char *p; char *p;
char *error; const char *error;
*ctxp = av_mallocz(sizeof(ContextInfo)); *ctxp = av_mallocz(sizeof(ContextInfo));
ci = (ContextInfo *) *ctxp; ci = (ContextInfo *) *ctxp;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment