Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/libbb
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2022-12-13 18:00:00 +0300
committerDenys Vlasenko <vda.linux@googlemail.com>2022-12-13 18:00:00 +0300
commit7710250e4a610ae6a4d8f6feb5500f16f82d19f4 (patch)
tree5422fdae6a98208ed96f9ab7b41fa5e0e125a077 /libbb
parenta55bd1c4847dda99cf9e65519ed67f3bcc9786d8 (diff)
libbb: shrink del_loop()
function old new delta del_loop 52 49 -3 Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'libbb')
-rw-r--r--libbb/loop.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libbb/loop.c b/libbb/loop.c
index ffc8acd39..95c4a34e2 100644
--- a/libbb/loop.c
+++ b/libbb/loop.c
@@ -71,7 +71,7 @@ int FAST_FUNC del_loop(const char *device)
fd = open(device, O_RDONLY);
if (fd < 0)
- return 1;
+ return fd; /* -1 */
rc = ioctl(fd, LOOP_CLR_FD, 0);
close(fd);