aboutsummaryrefslogtreecommitdiffstats
path: root/include/types.h
diff options
context:
space:
mode:
authorWerner Koch <[email protected]>1998-02-03 12:09:20 +0000
committerWerner Koch <[email protected]>1998-02-03 12:09:20 +0000
commit899b8378eca7a3801d02bab5fb4cd13dfb6a8595 (patch)
tree71b685933a39dfbdc7d6801775dc2c6ff99aeddf /include/types.h
parentchanged structure of trustdb (diff)
downloadgnupg-899b8378eca7a3801d02bab5fb4cd13dfb6a8595.tar.gz
gnupg-899b8378eca7a3801d02bab5fb4cd13dfb6a8595.zip
Fixed a few bugs
Diffstat (limited to 'include/types.h')
-rw-r--r--include/types.h4
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