diff options
author | Clément Bœsch <ubitux@gmail.com> | 2012-05-09 09:57:33 +0200 |
---|---|---|
committer | Clément Bœsch <ubitux@gmail.com> | 2012-05-18 23:34:11 +0200 |
commit | 7c2bb79f3b849d12800856379063f99f3b018678 (patch) | |
tree | a11bdc057745f0378a221773d746689f36434838 | |
parent | 1913989f568eab1b001e6c8645fd6f5409d93099 (diff) | |
download | ffmpeg-7c2bb79f3b849d12800856379063f99f3b018678.tar.gz |
lavu/error: fix make checkheaders.
The errors need to be defined before including functions depending on
them. See av_size_mult() for instance. stddef.h is included for the
prototype of av_sterror (use of size_t).
-rw-r--r-- | libavutil/error.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavutil/error.h b/libavutil/error.h index 3b05e4b50e..316734f112 100644 --- a/libavutil/error.h +++ b/libavutil/error.h @@ -25,7 +25,7 @@ #define AVUTIL_ERROR_H #include <errno.h> -#include "avutil.h" +#include <stddef.h> /** * @addtogroup lavu_error |