aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMasatake YAMATO <yamato@redhat.com>2025-11-23 08:14:42 +0900
committerMasatake YAMATO <yamato@redhat.com>2025-11-23 08:14:42 +0900
commit87ebe6b37d781fa0232dbe6f5a1c131586e29e6f (patch)
treef0de3bfc07473aa1a45d06dc54335eea339df5fc
parentbffe45293fd20260ffae387c488b480a8899d360 (diff)
downloadutil-linux-87ebe6b37d781fa0232dbe6f5a1c131586e29e6f.tar.gz
lsfd: (cleanup) return 0 instead of false
Signed-off-by: Masatake YAMATO <yamato@redhat.com>
-rw-r--r--lsfd-cmd/cdev.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lsfd-cmd/cdev.c b/lsfd-cmd/cdev.c
index c70cc7ebab..9cf5b6b5a6 100644
--- a/lsfd-cmd/cdev.c
+++ b/lsfd-cmd/cdev.c
@@ -443,7 +443,7 @@ static int cdev_tun_handle_fdinfo(struct cdev *cdev, const char *key, const char
tundata->iff = xstrdup(val);
return 1;
}
- return false;
+ return 0;
}
static struct cdev_ops cdev_tun_ops = {