diff options
author | Theo Schlossnagle <jesus@omniti.com> | 2013-05-09 23:44:40 +0000 |
---|---|---|
committer | Garrett D'Amore <garrett@damore.org> | 2013-04-23 13:38:06 -0700 |
commit | 5eaceb49d5b95dd7910af115172887f8dbddfb4c (patch) | |
tree | 9c20e3039ce5942db183ab40bb1e3cf70b2d4a72 /usr/src/uts/common/syscall/fcntl.c | |
parent | 5dbfd19ad5fcc2b779f40f80fa05c1bd28fd0b4e (diff) | |
download | illumos-joyent-5eaceb49d5b95dd7910af115172887f8dbddfb4c.tar.gz |
3713 Implement accept4() (fix lint)
Diffstat (limited to 'usr/src/uts/common/syscall/fcntl.c')
-rw-r--r-- | usr/src/uts/common/syscall/fcntl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr/src/uts/common/syscall/fcntl.c b/usr/src/uts/common/syscall/fcntl.c index 43a50d6d58..cc0d7858d1 100644 --- a/usr/src/uts/common/syscall/fcntl.c +++ b/usr/src/uts/common/syscall/fcntl.c @@ -194,7 +194,7 @@ fcntl(int fdes, int cmd, intptr_t arg) goto done; } - /* lint -fallthrough */ + /*FALLTHROUGH*/ case F_DUP2FD: p = curproc; |