From 87ebe6b37d781fa0232dbe6f5a1c131586e29e6f Mon Sep 17 00:00:00 2001 From: Masatake YAMATO Date: Sun, 23 Nov 2025 08:14:42 +0900 Subject: [PATCH] lsfd: (cleanup) return 0 instead of false Signed-off-by: Masatake YAMATO --- lsfd-cmd/cdev.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lsfd-cmd/cdev.c b/lsfd-cmd/cdev.c index c70cc7eba..9cf5b6b5a 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 = { -- 2.47.3