From edf5b1c0911a6253c0d3c2492c5b7375948f32c5 Mon Sep 17 00:00:00 2001 From: "nethack.allison" Date: Sat, 16 Jan 2010 16:38:35 +0000 Subject: [PATCH] more lint (trunk only) ..\src\windows.c(329) : 'boolean (__cdecl *)()' differs in parameter lists from 'boolean (__cdecl *)(void)' Committed on the Free edition of March Hare Software CVSNT Server. Upgrade to CVS Suite for more features and support: http://march-hare.com/cvsnt/ --- src/windows.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/windows.c b/src/windows.c index 03f2db51a..6a7648288 100644 --- a/src/windows.c +++ b/src/windows.c @@ -89,12 +89,12 @@ struct win_choices { }; boolean -genl_can_suspend_no(){ +genl_can_suspend_no(VOID_ARGS){ return FALSE; } boolean -genl_can_suspend_yes(){ +genl_can_suspend_yes(VOID_ARGS){ return TRUE; }