From 0bc800d71fd7eb3c939ec02977362d6389752cfe Mon Sep 17 00:00:00 2001 From: Gregory Nutt Date: Mon, 11 Feb 2019 15:54:31 -0600 Subject: [PATCH] net/tcp/tcp.h: Fix a muffed edit to conditional found in build testing. --- net/tcp/tcp.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net/tcp/tcp.h b/net/tcp/tcp.h index 8db4e9c6e0..c71eb075c3 100644 --- a/net/tcp/tcp.h +++ b/net/tcp/tcp.h @@ -63,7 +63,7 @@ /* Conditions for support TCP poll/select operations */ -#if !defined(CONFIG_DISABLE_POLL) 0 && defined(CONFIG_NET_TCP_READAHEAD) +#if !defined(CONFIG_DISABLE_POLL) && defined(CONFIG_NET_TCP_READAHEAD) # define HAVE_TCP_POLL #endif