From 695f33df8a52c87da1e702d3fee7ed3ce3441d09 Mon Sep 17 00:00:00 2001 From: Gleb Smirnoff Date: Tue, 13 Mar 2018 22:54:29 +0000 Subject: [PATCH] Fix typo that misteriously passes compilation. --- stand/userboot/userboot/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stand/userboot/userboot/main.c b/stand/userboot/userboot/main.c index 3ab4ca63525..1f0901dc699 100644 --- a/stand/userboot/userboot/main.c +++ b/stand/userboot/userboot/main.c @@ -159,7 +159,7 @@ extract_currdev(void) //bzero(&dev, sizeof(dev)); #if defined(USERBOOT_ZFS_SUPPORT) - CT_ASSERT(sizeof(struct disk_devdesc) >= sizeof(struct zfs_devdesc)); + CTASSERT(sizeof(struct disk_devdesc) >= sizeof(struct zfs_devdesc)); if (userboot_zfs_found) { struct zfs_devdesc zdev;