From cde61e2fac9f313592c940a0ceecf40044ae3e92 Mon Sep 17 00:00:00 2001 From: Robert James Kaes Date: Mon, 14 Jun 2004 20:49:57 +0000 Subject: [PATCH] child_configure(): Change the "val" type to a signed integer. --- src/child.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/child.h b/src/child.h index 2ae5b3d..95447ee 100644 --- a/src/child.h +++ b/src/child.h @@ -1,4 +1,4 @@ -/* $Id: child.h,v 1.1 2002-05-26 18:45:26 rjkaes Exp $ +/* $Id: child.h,v 1.1.2.1 2004-06-14 20:49:57 rjkaes Exp $ * * See 'child.c' for more information. * @@ -32,6 +32,6 @@ extern void child_close_sock(void); extern void child_main_loop(void); extern void child_kill_children(void); -extern short int child_configure(child_config_t type, unsigned int val); +extern short int child_configure(child_config_t type, int val); #endif