Gitweb: http://git.fedorahosted.org/git/cluster.git?p=cluster.git;a=commitdiff;h=cda414e94535f79a236357e9206b7b25ffd9d398 Commit: cda414e94535f79a236357e9206b7b25ffd9d398 Parent: af56607de98bb20578833a1261c5c263e9fffac7 Author: Fabio M. Di Nitto AuthorDate: Wed May 6 06:27:52 2009 +0200 Committer: David Teigland CommitterDate: Mon May 11 10:05:05 2009 -0500 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 --- 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 c925233..dadf1d2 100644 --- a/dlm/libdlm/libdlm.c +++ b/dlm/libdlm/libdlm.c @@ -244,7 +244,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; @@ -1183,7 +1183,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