diff options
author | Ron Yorston <rmy@pobox.com> | 2014-10-09 13:50:54 +0100 |
---|---|---|
committer | Ron Yorston <rmy@pobox.com> | 2014-10-09 13:50:54 +0100 |
commit | 0161b80c268c9c3e36c7e639029f98a5d316f573 (patch) | |
tree | 1a173c484b76a566b78d08ec1cb4601f6a5cbcf8 | |
parent | 6254967d9c893eb5349a43d3e75cb2fb6f98f23b (diff) | |
download | busybox-w32-0161b80c268c9c3e36c7e639029f98a5d316f573.tar.gz busybox-w32-0161b80c268c9c3e36c7e639029f98a5d316f573.tar.bz2 busybox-w32-0161b80c268c9c3e36c7e639029f98a5d316f573.zip |
mingw.c: add missing break in fcntl implementation
This may address:
https://github.com/rmyorston/busybox-w32/issues/25
-rw-r--r-- | win32/mingw.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/win32/mingw.c b/win32/mingw.c index f98aec44b..8045fb996 100644 --- a/win32/mingw.c +++ b/win32/mingw.c | |||
@@ -798,6 +798,7 @@ int fcntl(int fd, int cmd, ...) | |||
798 | } | 798 | } |
799 | free(fds); | 799 | free(fds); |
800 | result = newfd; | 800 | result = newfd; |
801 | break; | ||
801 | default: | 802 | default: |
802 | errno = ENOSYS; | 803 | errno = ENOSYS; |
803 | break; | 804 | break; |