From: Ken Raeburn Date: Tue, 26 Aug 2008 19:34:18 +0000 (+0000) Subject: Change non-debug version of k5_debug_log to int to silence some X-Git-Tag: krb5-1.7-alpha1~455 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=5eae0ec203bfc36b23707e4141e2260ef6d69c63;p=krb5.git 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 --- 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