From bd9d4e5212a4c1fcdf28d2abcee3ad24a27f2d03 Mon Sep 17 00:00:00 2001 From: Derrell Lipman Date: Mon, 11 May 2009 14:16:52 -0400 Subject: Correct typos; semicolons instead of commas --- source3/include/libsmbclient.h | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'source3/include/libsmbclient.h') diff --git a/source3/include/libsmbclient.h b/source3/include/libsmbclient.h index 3b38b30c32..7de5000615 100644 --- a/source3/include/libsmbclient.h +++ b/source3/include/libsmbclient.h @@ -2783,24 +2783,24 @@ smbc_thread_impl( /* Mutex functions. */ int (*create_mutex)(const char *lockname, void **pplock, - const char *location); + const char *location), void (*destroy_mutex)(void *plock, - const char *location); + const char *location), int (*lock_mutex)(void *plock, int lock_type, - const char *location); + const char *location), /* Thread local storage. */ int (*create_tls)(const char *keyname, void **ppkey, - const char *location); + const char *location), void (*destroy_tls)(void **ppkey, - const char *location); + const char *location), int (*set_tls)(void *pkey, const void *pval, - const char *location); + const char *location), void *(*get_tls)(void *pkey, - const char *location); + const char *location) ); -- cgit