From f15b77ca275852cf6d6a34e2e98b29737ed32cb1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Graber?= Date: Sun, 13 Jan 2013 15:29:26 -0500 Subject: [PATCH] lxcutmp.c: Fix typo causing build failure MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit In a previous change I added an ifdef for HAVE_SYS_TIMERFD_h rather than HAVE_SYS_TIMERFD_H, leading to a missing include of sys/timerfd.h on platforms that support it and ultimately to a build failure. Signed-off-by: Stéphane Graber --- src/lxc/lxcutmp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lxc/lxcutmp.c b/src/lxc/lxcutmp.c index d00567e59..4e74904ab 100644 --- a/src/lxc/lxcutmp.c +++ b/src/lxc/lxcutmp.c @@ -31,7 +31,7 @@ #include #include #include -#ifdef HAVE_SYS_TIMERFD_h +#ifdef HAVE_SYS_TIMERFD_H #include #else #include