From fe5123c2ecdd9abc40c04107343771ab9ec630ef Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Sat, 23 Sep 2006 21:27:48 +0000 Subject: r18855: Tell the diff between WERROR and NTSTATUS Volker (This used to be commit 5cc4117692572f086b44324949546463681b837e) --- source3/include/nt_status.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source3') diff --git a/source3/include/nt_status.h b/source3/include/nt_status.h index 2b681101db..968657ca44 100644 --- a/source3/include/nt_status.h +++ b/source3/include/nt_status.h @@ -45,9 +45,9 @@ typedef uint32 NTSTATUS; #endif #if defined(HAVE_IMMEDIATE_STRUCTURES) -typedef struct {uint32 v;} WERROR; +typedef struct {uint32 w;} WERROR; #define W_ERROR(x) ((WERROR) { x }) -#define W_ERROR_V(x) ((x).v) +#define W_ERROR_V(x) ((x).w) #else typedef uint32 WERROR; #define W_ERROR(x) (x) -- cgit