diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2010-09-27 10:34:03 +0000 |
---|---|---|
committer | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2010-09-27 10:34:03 +0000 |
commit | be0e596a57633a1358a4414239947f42b328af74 (patch) | |
tree | 65b9c2bb0ece98f6b41b3e300d1803586663b6c7 /libavutil/opt.c | |
parent | 8f1afd3b37e3c32d88555515a4fec688c0580645 (diff) | |
download | ffmpeg-be0e596a57633a1358a4414239947f42b328af74.tar.gz |
Simplify include, since opt.c is now in libavutil there is no need
to use the library path prefix for eval.h.
Originally committed as revision 25220 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavutil/opt.c')
-rw-r--r-- | libavutil/opt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavutil/opt.c b/libavutil/opt.c index 0ac021df71..10137d0a91 100644 --- a/libavutil/opt.c +++ b/libavutil/opt.c @@ -27,7 +27,7 @@ #include "avutil.h" #include "opt.h" -#include "libavutil/eval.h" +#include "eval.h" //FIXME order them and do a bin search const AVOption *av_find_opt(void *v, const char *name, const char *unit, int mask, int flags) |