From de7a598ab8aefa185a15a38bb2a83af54429bd9f Mon Sep 17 00:00:00 2001 From: Michael Adam Date: Wed, 1 Jul 2009 10:51:17 +0200 Subject: [PATCH] lib/util: fix order of includes in tevent_ntstatus.c replace.h needs to be included first. Michael (cherry picked from commit 8d982d91f231abbf003473d09433fca2cfa240ac) Signed-off-by: Michael Adam --- lib/util/tevent_ntstatus.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/lib/util/tevent_ntstatus.c b/lib/util/tevent_ntstatus.c index 1a34e9c..6aa576d 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) { -- 1.6.0.4