From c19d3588c2a22b72090067178df239d861ec34da Mon Sep 17 00:00:00 2001 From: Ralf Baechle Date: Sun, 14 Jun 2009 08:21:30 +0000 Subject: Eleminate use of register keyword Any modern C compiler will just ignore register so it's just cluttering the screen. --- daemon.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'daemon.c') diff --git a/daemon.c b/daemon.c index be2bb17..31cb71a 100644 --- a/daemon.c +++ b/daemon.c @@ -17,7 +17,7 @@ int daemon_start(int ignsigcld) /* Programming_ pp.72-85, by W. Richard Stephens, Prentice */ /* Hall PTR, 1990 */ - register int childpid, fd; + int childpid, fd; /* If started by init, don't bother */ if (getppid() == 1) -- cgit v1.2.3