diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2008-05-21 17:50:42 +0000 |
---|---|---|
committer | Benoit Fouet <benoit.fouet@free.fr> | 2008-05-21 17:50:42 +0000 |
commit | cad2af9760554fc33bac0cbc088910cda7580b64 (patch) | |
tree | 66437b43cd1acfbb83a5a52a40f7332322c280d3 | |
parent | 475f4d8d4bb1578c75e9ede5f3da8e2816459c10 (diff) | |
download | ffmpeg-streaming-cad2af9760554fc33bac0cbc088910cda7580b64.zip ffmpeg-streaming-cad2af9760554fc33bac0cbc088910cda7580b64.tar.gz |
Improve parse_primary() error message.
Patch by Stefano Sabatini and Michael Niedermayer
Originally committed as revision 13218 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/eval.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/eval.c b/libavcodec/eval.c index 25e8178..3bb752f 100644 --- a/libavcodec/eval.c +++ b/libavcodec/eval.c @@ -217,7 +217,7 @@ static AVEvalExpr * parse_primary(Parser *p) { p->s= strchr(p->s, '('); if(p->s==NULL){ - *p->error = "missing ("; + *p->error = "undefined constant or missing ("; p->s= next; ff_eval_free(d); return NULL; |