From: Masatake YAMATO Date: Sat, 22 Nov 2025 23:14:42 +0000 (+0900) Subject: lsfd: (cleanup) return 0 instead of false X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=87ebe6b37d781fa0232dbe6f5a1c131586e29e6f;p=thirdparty%2Futil-linux.git lsfd: (cleanup) return 0 instead of false Signed-off-by: Masatake YAMATO --- 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 = {