diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2006-06-25 22:08:53 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2006-06-25 22:08:53 +0000 |
commit | f087798e8bf5857b679c369601426ca29334caee (patch) | |
tree | e5f71b53c9af54ca4db5ca7aca9a7ab99a9d3934 /miscutils | |
parent | a892bf82840423f680bba65c0e679657b0dd347f (diff) | |
download | busybox-f087798e8bf5857b679c369601426ca29334caee.tar.gz |
- convert old-style parameter declarations (K&R) to modern style.
Diffstat (limited to 'miscutils')
-rw-r--r-- | miscutils/devfsd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/miscutils/devfsd.c b/miscutils/devfsd.c index b2912a89e..9853067ee 100644 --- a/miscutils/devfsd.c +++ b/miscutils/devfsd.c @@ -1186,7 +1186,7 @@ do_chown: return (FALSE); } /* End Function copy_inode */ -static void free_config () +static void free_config (void) /* [SUMMARY] Free the configuration information. [RETURNS] Nothing. */ |