From 981ca845cd2b01d83fc4058ad50611cbcaf90260 Mon Sep 17 00:00:00 2001 From: Gregory Nutt Date: Sat, 17 Jan 2015 11:55:50 -0600 Subject: [PATCH] apps/examples/udp/Kconfig: Default setting is backward --- examples/udp/Kconfig | 4 ++-- examples/udp/target.c | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/examples/udp/Kconfig b/examples/udp/Kconfig index c50573f62..fd64d5290 100644 --- a/examples/udp/Kconfig +++ b/examples/udp/Kconfig @@ -29,7 +29,7 @@ config EXAMPLES_UDP_NETMASK config EXAMPLES_UDP_SERVERIP hex "Server IP address" - default 0x0a000001 if EXAMPLES_UDP_SERVER - default 0x0a000002 if !EXAMPLES_UDP_SERVER + default 0x0a000001 if !EXAMPLES_UDP_SERVER + default 0x0a000002 if EXAMPLES_UDP_SERVER endif # EXAMPLES_UDP diff --git a/examples/udp/target.c b/examples/udp/target.c index 8c5d88dca..72ca05d17 100644 --- a/examples/udp/target.c +++ b/examples/udp/target.c @@ -49,7 +49,7 @@ #include "udp-internal.h" /**************************************************************************** - * Definitions + * Pre-processor Definitions ****************************************************************************/ /****************************************************************************