From ce6682d990ecc2d3423fa87728a29073b104d94c Mon Sep 17 00:00:00 2001 From: Ryan Stone Date: Sat, 28 Feb 2015 22:37:48 +0000 Subject: [PATCH] Add a missing include of an options header. watchdog.c does an #ifdef DDB but does not #include "opt_ddb.h". Fixing this turned up a missing include file. MFC after: 1 week X-MFC-With: r261495, r279410 --- sys/dev/watchdog/watchdog.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/sys/dev/watchdog/watchdog.c b/sys/dev/watchdog/watchdog.c index 087d6e86294..5c9c6a11407 100644 --- a/sys/dev/watchdog/watchdog.c +++ b/sys/dev/watchdog/watchdog.c @@ -28,6 +28,8 @@ * */ +#include "opt_ddb.h" + #include __FBSDID("$FreeBSD$"); @@ -37,6 +39,7 @@ __FBSDID("$FreeBSD$"); #include #include #include +#include #include #include #include