diff options
author | Stefan Farfeleder <stefanf@FreeBSD.org> | 2004-05-16 22:08:17 +0000 |
---|---|---|
committer | Stefan Farfeleder <stefanf@FreeBSD.org> | 2004-05-16 22:08:17 +0000 |
commit | a752604477c646135eb8972a9797f4c331ce09ac (patch) | |
tree | d0e580fe01975ec46af69e68238174deea46d8f4 /usr.sbin/rpc.lockd/lockd_lock.c | |
parent | 5eb4afcbb96a4ad477e2223afb963d8bbee5e009 (diff) | |
download | src-a752604477c646135eb8972a9797f4c331ce09ac.tar.gz src-a752604477c646135eb8972a9797f4c331ce09ac.zip |
Remove spurious semicolons. Outside of functions they are actually errors but
GCC doesn't warn about them without -pedantic.
Approved by: das (mentor)
PR: 56649
Reviewed by: md5
Notes
Notes:
svn path=/head/; revision=129302
Diffstat (limited to 'usr.sbin/rpc.lockd/lockd_lock.c')
-rw-r--r-- | usr.sbin/rpc.lockd/lockd_lock.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.sbin/rpc.lockd/lockd_lock.c b/usr.sbin/rpc.lockd/lockd_lock.c index 68aa1593cff9..9779aa4deaac 100644 --- a/usr.sbin/rpc.lockd/lockd_lock.c +++ b/usr.sbin/rpc.lockd/lockd_lock.c @@ -172,7 +172,7 @@ void fill_file_lock(struct file_lock *fl, const fhandle_t *fh, const u_int64_t offset, const u_int64_t len, const char *caller_name, const int state, const int status, const int flags, const int blocking); int regions_overlap(const u_int64_t start1, const u_int64_t len1, - const u_int64_t start2, const u_int64_t len2);; + const u_int64_t start2, const u_int64_t len2); enum split_status region_compare(const u_int64_t starte, const u_int64_t lene, const u_int64_t startu, const u_int64_t lenu, u_int64_t *start1, u_int64_t *len1, u_int64_t *start2, u_int64_t *len2); |