diff options
author | Ed Schouten <ed@FreeBSD.org> | 2010-01-02 11:05:34 +0000 |
---|---|---|
committer | Ed Schouten <ed@FreeBSD.org> | 2010-01-02 11:05:34 +0000 |
commit | 9a958de54ccdc98bccac14218af0cb9fe04e607d (patch) | |
tree | 6af957c7a5ebcb33410c42b9f932f4bb50d4645e /usr.sbin/asf/asf_kld.c | |
parent | b7946da96b4498519f66f3f5fe72d1474bf13f7d (diff) | |
download | src-9a958de54ccdc98bccac14218af0cb9fe04e607d.tar.gz src-9a958de54ccdc98bccac14218af0cb9fe04e607d.zip |
ANSIfy some more tools in usr.sbin/.
Most of these tools build with WARNS=6, except for their use of K&R
function declarations.
Notes
Notes:
svn path=/head/; revision=201387
Diffstat (limited to 'usr.sbin/asf/asf_kld.c')
-rw-r--r-- | usr.sbin/asf/asf_kld.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.sbin/asf/asf_kld.c b/usr.sbin/asf/asf_kld.c index 1d6a2b7d51e6..f0bd699580d8 100644 --- a/usr.sbin/asf/asf_kld.c +++ b/usr.sbin/asf/asf_kld.c @@ -39,7 +39,7 @@ __FBSDID("$FreeBSD$"); * Works with a live kernel only. */ void -asf_kld() +asf_kld(void) { struct kld_file_stat kfs; int fid = 0; /* indicates the beginning of the linker file list */ |