diff options
author | Alexandra Ellwood <lxs@mit.edu> | 2008-03-10 21:51:49 +0000 |
---|---|---|
committer | Alexandra Ellwood <lxs@mit.edu> | 2008-03-10 21:51:49 +0000 |
commit | a28b624402aa0eac09ad93de5d1c5e6bccadcd82 (patch) | |
tree | 04d2b0c425f23f7e3d46b699bd28810bd69dcc31 /src/ccapi/test/simple_lock_test.c | |
parent | a5b461f0b826505cb666bf7aa3e04882ad7c2bdb (diff) | |
download | krb5-a28b624402aa0eac09ad93de5d1c5e6bccadcd82.tar.gz krb5-a28b624402aa0eac09ad93de5d1c5e6bccadcd82.tar.xz krb5-a28b624402aa0eac09ad93de5d1c5e6bccadcd82.zip |
Remove C warnings
Some C++ conventions in the CCAPI tests were producing warnings
on C compilers. Fixed code to stop producing warnings.
ticket: new
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@20268 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/ccapi/test/simple_lock_test.c')
-rw-r--r-- | src/ccapi/test/simple_lock_test.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ccapi/test/simple_lock_test.c b/src/ccapi/test/simple_lock_test.c index d51a58660..26bd74ed9 100644 --- a/src/ccapi/test/simple_lock_test.c +++ b/src/ccapi/test/simple_lock_test.c @@ -17,7 +17,7 @@ #endif -void * other_thread () { +void * other_thread (void) { cc_int32 err; cc_context_t context = NULL; |