diff options
author | Werner Koch <[email protected]> | 1998-02-03 12:09:20 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 1998-02-03 12:09:20 +0000 |
commit | 899b8378eca7a3801d02bab5fb4cd13dfb6a8595 (patch) | |
tree | 71b685933a39dfbdc7d6801775dc2c6ff99aeddf /include | |
parent | changed structure of trustdb (diff) | |
download | gnupg-899b8378eca7a3801d02bab5fb4cd13dfb6a8595.tar.gz gnupg-899b8378eca7a3801d02bab5fb4cd13dfb6a8595.zip |
Fixed a few bugs
Diffstat (limited to 'include')
-rw-r--r-- | include/types.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/types.h b/include/types.h index 0a2d8752f..e5804be66 100644 --- a/include/types.h +++ b/include/types.h @@ -57,9 +57,9 @@ #ifndef HAVE_U32_TYPEDEF #undef u32 /* maybe there is a macro with this name */ #if SIZEOF_UNSIGNED_INT == 4 - typedef unsigned long u32; - #elif SIZEOF_UNSIGNED_LONG == 4 typedef unsigned int u32; + #elif SIZEOF_UNSIGNED_LONG == 4 + typedef unsigned long u32; #else #error no typedef for u32 #endif |