public inbox for cluster-cvs@sourceware.org
help / color / mirror / Atom feed
* dlm: master - dlm: fix function prototypes
@ 2009-06-23  8:21 Fabio M. Di Nitto
  0 siblings, 0 replies; only message in thread
From: Fabio M. Di Nitto @ 2009-06-23  8:21 UTC (permalink / raw)
  To: cluster-cvs-relay

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain, Size: 2049 bytes --]

Gitweb:        http://git.fedorahosted.org/git/dlm.git?p=dlm.git;a=commitdiff;h=f4829e75c41fc944e5c2777cd709eb63fb5ccf16
Commit:        f4829e75c41fc944e5c2777cd709eb63fb5ccf16
Parent:        f46c522f1994ce7308801f10d14f538e73178e8c
Author:        Fabio M. Di Nitto <fdinitto@redhat.com>
AuthorDate:    Wed May 6 06:27:52 2009 +0200
Committer:     Fabio M. Di Nitto <fdinitto@redhat.com>
CommitterDate: Tue Jun 23 09:41:45 2009 +0200

dlm: fix function prototypes

cluster-stable3/dlm/libdlm/libdlm.h:223: warning: function declaration isn’t a prototype
cluster-stable3/dlm/libdlm/libdlm.h:225: warning: function declaration isn’t a prototype
cluster-stable3/dlm/libdlm/libdlm.c:248: warning: function declaration isn’t a prototype
cluster-stable3/dlm/libdlm/libdlm.c:1187: warning: function declaration isn’t a prototype

Signed-off-by: Fabio M. Di Nitto <fdinitto@redhat.com>
---
 dlm/libdlm/libdlm.c |    4 ++--
 dlm/libdlm/libdlm.h |    4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/dlm/libdlm/libdlm.c b/dlm/libdlm/libdlm.c
index 03f4664..823bb84 100644
--- a/dlm/libdlm/libdlm.c
+++ b/dlm/libdlm/libdlm.c
@@ -246,7 +246,7 @@ static int ls_pthread_cleanup(struct dlm_ls_info *lsinfo)
 }
 
 /* Cleanup default lockspace */
-int dlm_pthread_cleanup()
+int dlm_pthread_cleanup(void)
 {
     struct dlm_ls_info *lsinfo = default_ls;
 
@@ -1185,7 +1185,7 @@ static void *dlm_recv_thread(void *lsinfo)
 }
 
 /* Multi-threaded callers normally use this */
-int dlm_pthread_init()
+int dlm_pthread_init(void)
 {
     if (open_default_lockspace())
 	return -1;
diff --git a/dlm/libdlm/libdlm.h b/dlm/libdlm/libdlm.h
index 8f977b5..17a552c 100644
--- a/dlm/libdlm/libdlm.h
+++ b/dlm/libdlm/libdlm.h
@@ -220,9 +220,9 @@ extern int dlm_ls_purge(dlm_lshandle_t lockspace,
  */
 
 #ifdef _REENTRANT
-extern int dlm_pthread_init();
+extern int dlm_pthread_init(void);
 extern int dlm_ls_pthread_init(dlm_lshandle_t lockspace);
-extern int dlm_pthread_cleanup();
+extern int dlm_pthread_cleanup(void);
 #endif
 
 


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2009-06-23  8:21 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-06-23  8:21 dlm: master - dlm: fix function prototypes Fabio M. Di Nitto

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).