From 0f6d2ee216bed228676e6ea8f33b8bfbf6cf1880 Mon Sep 17 00:00:00 2001 From: Christoph Lipka Date: Tue, 25 Sep 2018 15:44:14 +0200 Subject: Fix compiler warning PR #77 warning: extra tokens at end of #ifdef directive Signed-off-by: Christoph Lipka --- src/daemon/dlt_daemon_client.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/daemon/dlt_daemon_client.c') diff --git a/src/daemon/dlt_daemon_client.c b/src/daemon/dlt_daemon_client.c index cb59239..dc07387 100644 --- a/src/daemon/dlt_daemon_client.c +++ b/src/daemon/dlt_daemon_client.c @@ -46,7 +46,7 @@ #endif #include #include -#ifdef defined(linux) && defined(__NR_statx) +#if defined(linux) && defined(__NR_statx) #include #endif -- cgit v1.2.1