diff options
author | ed <ed@FreeBSD.org> | 2010-01-02 11:05:34 +0000 |
---|---|---|
committer | ed <ed@FreeBSD.org> | 2010-01-02 11:05:34 +0000 |
commit | ec19ea84b8117fa04d9e5cf9d8945e0bacc2596e (patch) | |
tree | 6af957c7a5ebcb33410c42b9f932f4bb50d4645e /usr.sbin/quotaon | |
parent | 9b380e30d4e06cf0243e311871dc27cfa4a6354a (diff) | |
download | FreeBSD-src-ec19ea84b8117fa04d9e5cf9d8945e0bacc2596e.zip FreeBSD-src-ec19ea84b8117fa04d9e5cf9d8945e0bacc2596e.tar.gz |
ANSIfy some more tools in usr.sbin/.
Most of these tools build with WARNS=6, except for their use of K&R
function declarations.
Diffstat (limited to 'usr.sbin/quotaon')
-rw-r--r-- | usr.sbin/quotaon/quotaon.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/usr.sbin/quotaon/quotaon.c b/usr.sbin/quotaon/quotaon.c index 314f596..84a523d 100644 --- a/usr.sbin/quotaon/quotaon.c +++ b/usr.sbin/quotaon/quotaon.c @@ -154,10 +154,7 @@ usage(void) } int -quotaonoff(fs, offmode, type, qfpathname) - register struct fstab *fs; - int offmode, type; - char *qfpathname; +quotaonoff(struct fstab *fs, int offmode, int type, char *qfpathname) { if (strcmp(fs->fs_file, "/") && readonly(fs)) |