summaryrefslogtreecommitdiffstats
path: root/src/util/profile/prof_init.c
diff options
context:
space:
mode:
authorKen Raeburn <raeburn@mit.edu>2004-02-19 23:02:54 +0000
committerKen Raeburn <raeburn@mit.edu>2004-02-19 23:02:54 +0000
commitc76ebea17dd74777f7e01f39f43e58685670a914 (patch)
tree16e36c8b9816de8fe7c3dde4bf1b53953527f79f /src/util/profile/prof_init.c
parent2f6ea9303f3981e26929c3791a0b2dd9ac05610f (diff)
downloadkrb5-c76ebea17dd74777f7e01f39f43e58685670a914.tar.gz
krb5-c76ebea17dd74777f7e01f39f43e58685670a914.tar.xz
krb5-c76ebea17dd74777f7e01f39f43e58685670a914.zip
* prof_init.c (prof_int32): If long is 4 bytes and int is not, then use long,
not int, for prof_int32. git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@16105 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/util/profile/prof_init.c')
-rw-r--r--src/util/profile/prof_init.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util/profile/prof_init.c b/src/util/profile/prof_init.c
index 703631d3bf..de09d78326 100644
--- a/src/util/profile/prof_init.c
+++ b/src/util/profile/prof_init.c
@@ -18,7 +18,7 @@ typedef short prof_int32;
#elif (SIZEOF_INT == 4)
typedef int prof_int32;
#elif (SIZEOF_LONG == 4)
-typedef int prof_int32;
+typedef long prof_int32;
#else /* SIZEOF_LONG == 4 */
error(do not have a 4-byte integer type)
#endif /* SIZEOF_LONG == 4 */