summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKen Raeburn <raeburn@mit.edu>2008-08-26 19:34:18 +0000
committerKen Raeburn <raeburn@mit.edu>2008-08-26 19:34:18 +0000
commit5eae0ec203bfc36b23707e4141e2260ef6d69c63 (patch)
tree1bbf0efa6b1ab5bc56e887dcadc7d8cad5cf102f /src
parented6eadb83d63807835c251cb2b602c94d57dc114 (diff)
downloadkrb5-5eae0ec203bfc36b23707e4141e2260ef6d69c63.tar.gz
krb5-5eae0ec203bfc36b23707e4141e2260ef6d69c63.tar.xz
krb5-5eae0ec203bfc36b23707e4141e2260ef6d69c63.zip
Change non-debug version of k5_debug_log to int to silence some
compiler warnings. git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@20695 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src')
-rw-r--r--src/include/k5-thread.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/k5-thread.h b/src/include/k5-thread.h
index e8f2c9957..c68898880 100644
--- a/src/include/k5-thread.h
+++ b/src/include/k5-thread.h
@@ -169,7 +169,7 @@ static inline k5_debug_loc k5_debug_make_loc(const char *file, int line)
#define K5_DEBUG_LOC (k5_debug_make_loc(__FILE__,__LINE__))
#endif
#else /* ! DEBUG_THREADS_LOC */
-typedef char k5_debug_loc;
+typedef int k5_debug_loc;
#define K5_DEBUG_LOC_INIT 0
#define K5_DEBUG_LOC 0
#endif