diff options
author | Michael Adam <obnox@samba.org> | 2009-07-01 10:51:17 +0200 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2009-07-01 11:14:54 +0200 |
commit | 8d982d91f231abbf003473d09433fca2cfa240ac (patch) | |
tree | 8aea4abfeff566dcb509a6c649d0f60e60ad9665 /lib/util | |
parent | 34d6d7cec82c50ce7b36fec0051063f44fed5609 (diff) | |
download | samba-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')
-rw-r--r-- | 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 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) { |