diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2009-02-18 21:32:59 +0000 |
---|---|---|
committer | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2009-02-18 21:32:59 +0000 |
commit | 9ac9f89639986e550ad01407b856d57fa260d586 (patch) | |
tree | 4dbfc5878ac74bd225ac0759830bc257f583c2cb /vhook | |
parent | 61af68d71a26666e1e6b200d3a53f4354bdeb180 (diff) | |
download | ffmpeg-9ac9f89639986e550ad01407b856d57fa260d586.tar.gz |
Use const qualifier for the variable "tbp", fix warning.
Originally committed as revision 17438 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'vhook')
-rw-r--r-- | vhook/imlib2.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vhook/imlib2.c b/vhook/imlib2.c index eed6c236d2..ffe873c58e 100644 --- a/vhook/imlib2.c +++ b/vhook/imlib2.c @@ -395,7 +395,7 @@ void Process(void *ctx, AVPicture *picture, enum PixelFormat pix_fmt, int width, int wid, hig, h_a, v_a; char buff[1000]; char tbuff[1000]; - char *tbp = ci->text; + const char *tbp = ci->text; time_t now = time(0); char *p, *q; int y; |