From: Thomas Weißschuh Date: Mon, 12 Dec 2022 19:54:59 +0000 (+0000) Subject: lsblk: align function prototype X-Git-Tag: v2.39-rc1~372^2~4 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=ef5d0cfe92fdc38e847130c99ef97535c8eef187;p=thirdparty%2Futil-linux.git lsblk: align function prototype --- diff --git a/misc-utils/lsblk-devtree.c b/misc-utils/lsblk-devtree.c index 6f9dc54b3c..5e4ff4c3eb 100644 --- a/misc-utils/lsblk-devtree.c +++ b/misc-utils/lsblk-devtree.c @@ -30,7 +30,7 @@ void lsblk_reset_iter(struct lsblk_iter *itr, int direction) itr->direction = direction; } -struct lsblk_device *lsblk_new_device() +struct lsblk_device *lsblk_new_device(void) { struct lsblk_device *dev; @@ -233,7 +233,7 @@ int lsblk_device_next_parent( return rc; } -struct lsblk_devtree *lsblk_new_devtree() +struct lsblk_devtree *lsblk_new_devtree(void) { struct lsblk_devtree *tr;