summaryrefslogtreecommitdiffstats
path: root/daemon.c
diff options
context:
space:
mode:
authorRalf Baechle <ralf@linux-mips.org>2009-06-14 08:21:30 +0000
committerRalf Baechle <ralf@linux-mips.org>2009-06-14 08:21:30 +0000
commitc19d3588c2a22b72090067178df239d861ec34da (patch)
treede4c5a79cf053e186082aa7babd371518857c58b /daemon.c
parentaa2a94fb05ab6aacf6c603f3839247291a11478e (diff)
Eleminate use of register keyword
Any modern C compiler will just ignore register so it's just cluttering the screen.
Diffstat (limited to 'daemon.c')
-rw-r--r--daemon.c2
1 files changed, 1 insertions, 1 deletions
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)