1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-08-15 14:13:16 +02:00

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