From c6c81a0bd3579327bf311021ea7afca85aae6065 Mon Sep 17 00:00:00 2001 From: Andrey Konovalov Date: Thu, 22 Aug 2019 14:49:06 +0200 Subject: executor: fix procid not declared properly for netbsd (#1358) --- executor/common.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'executor/common.h') diff --git a/executor/common.h b/executor/common.h index 05c759788..378dca0f7 100644 --- a/executor/common.h +++ b/executor/common.h @@ -41,7 +41,7 @@ NORETURN void doexit(int status) #if SYZ_EXECUTOR || SYZ_PROCS || SYZ_REPEAT && SYZ_ENABLE_CGROUPS || \ SYZ_ENABLE_NETDEV || __NR_syz_mount_image || __NR_syz_read_part_table || \ - __NR_syz_usb_connect || (GOOS_openbsd || GOOS_freebsd) && SYZ_TUN_ENABLE + __NR_syz_usb_connect || (GOOS_freebsd || GOOS_openbsd || GOOS_netbsd) && SYZ_TUN_ENABLE unsigned long long procid; #endif -- cgit mrf-deployment