From: Michael Adam Date: Wed, 1 Jul 2009 08:51:17 +0000 (+0200) Subject: lib/util: fix order of includes in tevent_ntstatus.c X-Git-Tag: talloc-2.0.0~832 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8d982d91f231abbf003473d09433fca2cfa240ac;p=thirdparty%2Fsamba.git lib/util: fix order of includes in tevent_ntstatus.c replace.h needs to be included first. Michael --- diff --git a/lib/util/tevent_ntstatus.c b/lib/util/tevent_ntstatus.c index 4e4339989a1..d6cb0affd93 100644 --- a/lib/util/tevent_ntstatus.c +++ b/lib/util/tevent_ntstatus.c @@ -17,8 +17,8 @@ along with this program. If not, see . */ -#include "tevent_ntstatus.h" #include "../replace/replace.h" +#include "tevent_ntstatus.h" bool tevent_req_nterror(struct tevent_req *req, NTSTATUS status) {