diff options
author | Tom Yu <tlyu@mit.edu> | 2009-10-31 00:48:38 +0000 |
---|---|---|
committer | Tom Yu <tlyu@mit.edu> | 2009-10-31 00:48:38 +0000 |
commit | 02d6bcbc98a214e7aeaaa9f45f0db8784a7b743b (patch) | |
tree | 61b9147863cd8be3eff63903dc36cae168254bd5 /src/ccapi/common/cci_debugging.c | |
parent | 162ab371748cba0cc6f172419bd6e71fa04bb878 (diff) | |
download | krb5-02d6bcbc98a214e7aeaaa9f45f0db8784a7b743b.tar.gz krb5-02d6bcbc98a214e7aeaaa9f45f0db8784a7b743b.tar.xz krb5-02d6bcbc98a214e7aeaaa9f45f0db8784a7b743b.zip |
make mark-cstyle
make reindent
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@23100 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/ccapi/common/cci_debugging.c')
-rw-r--r-- | src/ccapi/common/cci_debugging.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/ccapi/common/cci_debugging.c b/src/ccapi/common/cci_debugging.c index 4545b402e..d6b9c62c0 100644 --- a/src/ccapi/common/cci_debugging.c +++ b/src/ccapi/common/cci_debugging.c @@ -29,18 +29,18 @@ /* ------------------------------------------------------------------------ */ -cc_int32 _cci_check_error (cc_int32 in_error, - const char *in_function, - const char *in_file, +cc_int32 _cci_check_error (cc_int32 in_error, + const char *in_function, + const char *in_file, int in_line) { /* Do not log for flow control errors or when there is no error at all */ if (in_error != ccNoError && in_error != ccIteratorEnd) { - cci_debug_printf ("%s() got %d at %s: %d", in_function, + cci_debug_printf ("%s() got %d at %s: %d", in_function, in_error, in_file, in_line); } - - return in_error; + + return in_error; } /* ------------------------------------------------------------------------ */ @@ -48,7 +48,7 @@ cc_int32 _cci_check_error (cc_int32 in_error, void cci_debug_printf (const char *in_format, ...) { va_list args; - + va_start (args, in_format); cci_os_debug_vprintf (in_format, args); va_end (args); |