diff options
Diffstat (limited to 'source3')
-rw-r--r-- | source3/include/nt_status.h | 4 |
1 files changed, 2 insertions, 2 deletions
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) |