diff options
Diffstat (limited to 'source4/include/nt_status.h')
-rw-r--r-- | source4/include/nt_status.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/source4/include/nt_status.h b/source4/include/nt_status.h index d2cf1ceae4..4e61d9a365 100644 --- a/source4/include/nt_status.h +++ b/source4/include/nt_status.h @@ -35,21 +35,21 @@ */ #if defined(HAVE_IMMEDIATE_STRUCTURES) -typedef struct {uint32 v;} NTSTATUS; +typedef struct {uint32_t v;} NTSTATUS; #define NT_STATUS(x) ((NTSTATUS) { x }) #define NT_STATUS_V(x) ((x).v) #else -typedef uint32 NTSTATUS; +typedef uint32_t NTSTATUS; #define NT_STATUS(x) (x) #define NT_STATUS_V(x) (x) #endif #if defined(HAVE_IMMEDIATE_STRUCTURES) -typedef struct {uint32 v;} WERROR; +typedef struct {uint32_t v;} WERROR; #define W_ERROR(x) ((WERROR) { x }) #define W_ERROR_V(x) ((x).v) #else -typedef uint32 WERROR; +typedef uint32_t WERROR; #define W_ERROR(x) (x) #define W_ERROR_V(x) (x) #endif |