Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClément Bœsch <ubitux@gmail.com>2012-05-09 11:57:33 +0400
committerClément Bœsch <ubitux@gmail.com>2012-05-19 01:34:11 +0400
commit7c2bb79f3b849d12800856379063f99f3b018678 (patch)
treea11bdc057745f0378a221773d746689f36434838 /libavutil/error.h
parent1913989f568eab1b001e6c8645fd6f5409d93099 (diff)
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).
Diffstat (limited to 'libavutil/error.h')
-rw-r--r--libavutil/error.h2
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