From e9488049c153aca4fe3ae034c483b15078fdc40f Mon Sep 17 00:00:00 2001 From: Lars Müller Date: Wed, 5 Apr 2006 07:29:22 +0000 Subject: r14922: Use BOOL for the returned value. (This used to be commit b228474be0ced2637272a7b614b92e412a118993) --- source3/param/loadparm.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/source3/param/loadparm.c b/source3/param/loadparm.c index 7d3995f092..95c095dcf2 100644 --- a/source3/param/loadparm.c +++ b/source3/param/loadparm.c @@ -3877,7 +3877,8 @@ static void dump_a_service(service * pService, FILE * f) BOOL dump_a_parameter(int snum, char *parm_name, FILE * f, BOOL isGlobal) { service * pService = ServicePtrs[snum]; - int i, result = False; + int i; + BOOL result = False; parm_class p_class; unsigned flag = 0; fstring local_parm_name; -- cgit