From f220ef0b3516da84ccd8de93b8a4f369cd121a31 Mon Sep 17 00:00:00 2001 From: Alan Somers Date: Fri, 29 Mar 2019 14:07:30 +0000 Subject: [PATCH] fix the GENERIC-NODEBUG build after r345675 Submitted by: cy Reported by: cy, Michael Butler MFC after: 2 weeks X-MFC-With: 345675 --- sys/fs/fuse/fuse_ipc.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/sys/fs/fuse/fuse_ipc.c b/sys/fs/fuse/fuse_ipc.c index 9f6b1c0bb9b..4e97ad23ec4 100644 --- a/sys/fs/fuse/fuse_ipc.c +++ b/sys/fs/fuse/fuse_ipc.c @@ -220,7 +220,9 @@ fticket_ctor(void *mem, int size, void *arg, int flags) static void fticket_dtor(void *mem, int size, void *arg) { +#ifdef INVARIANTS struct fuse_ticket *ftick = mem; +#endif FUSE_ASSERT_MS_DONE(ftick); FUSE_ASSERT_AW_DONE(ftick);