From: Francisco Jerez Date: Mon, 8 Jun 2015 11:46:58 +0000 (+0300) Subject: mesa: Include simple_list.h explicitly in errors.c. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=08a1046f6777c589f90eae3fd1e7e41ca364c45c;p=mesa.git mesa: Include simple_list.h explicitly in errors.c. This seems to be the only user of simple_list in core mesa not including the header explicitly. Reviewed-by: Brian Paul --- diff --git a/src/mesa/main/errors.c b/src/mesa/main/errors.c index 2aa1deb635f..16f10ddb694 100644 --- a/src/mesa/main/errors.c +++ b/src/mesa/main/errors.c @@ -39,6 +39,7 @@ #include "mtypes.h" #include "version.h" #include "util/hash_table.h" +#include "util/simple_list.h" static mtx_t DynamicIDMutex = _MTX_INITIALIZER_NP; static GLuint NextDynamicID = 1;