Correct typos; semicolons instead of commas
authorDerrell Lipman <derrell@dworkin.(none)>
Mon, 11 May 2009 18:16:52 +0000 (14:16 -0400)
committerDerrell Lipman <derrell@dworkin.(none)>
Mon, 11 May 2009 18:16:52 +0000 (14:16 -0400)
source3/include/libsmbclient.h

index 3b38b30c32f68a6f8b9dc850f033a4b09800a7f8..7de5000615e5423c1846676e6cc41285ae45fa7d 100644 (file)
@@ -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)
         );