Commit 818ff9a4 authored by Stefano Sabatini's avatar Stefano Sabatini

Assign const qualifier to the font variable, fix warning.

Originally committed as revision 17436 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 2ba56289
...@@ -146,7 +146,7 @@ int Configure(void **ctxp, int argc, char *argv[]) ...@@ -146,7 +146,7 @@ int Configure(void **ctxp, int argc, char *argv[])
int c; int c;
ContextInfo *ci; ContextInfo *ci;
char *rgbtxt = 0; char *rgbtxt = 0;
char *font = "LucidaSansDemiBold/16"; const char *font = "LucidaSansDemiBold/16";
char *fp = getenv("FONTPATH"); char *fp = getenv("FONTPATH");
char *color = 0; char *color = 0;
FILE *f; FILE *f;
......
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