summaryrefslogtreecommitdiff
path: root/lib/util/tevent_ntstatus.c
diff options
context:
space:
mode:
authorMichael Adam <obnox@samba.org>2009-07-01 10:51:17 +0200
committerMichael Adam <obnox@samba.org>2009-07-01 11:14:54 +0200
commit8d982d91f231abbf003473d09433fca2cfa240ac (patch)
tree8aea4abfeff566dcb509a6c649d0f60e60ad9665 /lib/util/tevent_ntstatus.c
parent34d6d7cec82c50ce7b36fec0051063f44fed5609 (diff)
downloadsamba-8d982d91f231abbf003473d09433fca2cfa240ac.tar.gz
samba-8d982d91f231abbf003473d09433fca2cfa240ac.tar.bz2
samba-8d982d91f231abbf003473d09433fca2cfa240ac.zip
lib/util: fix order of includes in tevent_ntstatus.c
replace.h needs to be included first. Michael
Diffstat (limited to 'lib/util/tevent_ntstatus.c')
-rw-r--r--lib/util/tevent_ntstatus.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/util/tevent_ntstatus.c b/lib/util/tevent_ntstatus.c
index 4e4339989a..d6cb0affd9 100644
--- a/lib/util/tevent_ntstatus.c
+++ b/lib/util/tevent_ntstatus.c
@@ -17,8 +17,8 @@
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
-#include "tevent_ntstatus.h"
#include "../replace/replace.h"
+#include "tevent_ntstatus.h"
bool tevent_req_nterror(struct tevent_req *req, NTSTATUS status)
{