Add const qualifier to the error var, fix warnings.

Originally committed as revision 17435 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Stefano Sabatini 2009-02-18 21:20:02 +00:00
parent eecc17a7d5
commit 2ba5628939

View File

@ -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;