Commit 7c2bb79f authored by Clément Bœsch's avatar Clément Bœsch

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).
parent 1913989f
...@@ -25,7 +25,7 @@ ...@@ -25,7 +25,7 @@
#define AVUTIL_ERROR_H #define AVUTIL_ERROR_H
#include <errno.h> #include <errno.h>
#include "avutil.h" #include <stddef.h>
/** /**
* @addtogroup lavu_error * @addtogroup lavu_error
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment