Commit f52edda2 authored by stefano's avatar stefano

Add const qualifier to the error var, fix warnings.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@17435 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 01978a99
...@@ -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