summaryrefslogtreecommitdiff
path: root/libavcodec
diff options
context:
space:
mode:
authorStefano Sabatini <stefano.sabatini-lala@poste.it>2008-05-21 17:50:42 +0000
committerBenoit Fouet <benoit.fouet@free.fr>2008-05-21 17:50:42 +0000
commitcad2af9760554fc33bac0cbc088910cda7580b64 (patch)
tree66437b43cd1acfbb83a5a52a40f7332322c280d3 /libavcodec
parent475f4d8d4bb1578c75e9ede5f3da8e2816459c10 (diff)
Improve parse_primary() error message.
Patch by Stefano Sabatini and Michael Niedermayer Originally committed as revision 13218 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec')
-rw-r--r--libavcodec/eval.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/eval.c b/libavcodec/eval.c
index 25e8178506..3bb752fec2 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;