summaryrefslogtreecommitdiff
path: root/apps/examples/uip
diff options
context:
space:
mode:
Diffstat (limited to 'apps/examples/uip')
-rw-r--r--apps/examples/uip/Makefile2
-rw-r--r--apps/examples/uip/uip_main.c (renamed from apps/examples/uip/main.c)4
2 files changed, 3 insertions, 3 deletions
diff --git a/apps/examples/uip/Makefile b/apps/examples/uip/Makefile
index 4407998fc..218f6f3c6 100644
--- a/apps/examples/uip/Makefile
+++ b/apps/examples/uip/Makefile
@@ -40,7 +40,7 @@ include $(APPDIR)/Make.defs
# uIP very tiny web server example
ASRCS =
-CSRCS = main.c cgi.c httpd_fsdata.c
+CSRCS = uip_main.c cgi.c httpd_fsdata.c
AOBJS = $(ASRCS:.S=$(OBJEXT))
COBJS = $(CSRCS:.c=$(OBJEXT))
diff --git a/apps/examples/uip/main.c b/apps/examples/uip/uip_main.c
index dcad63eaa..b552aed75 100644
--- a/apps/examples/uip/main.c
+++ b/apps/examples/uip/uip_main.c
@@ -1,5 +1,5 @@
/****************************************************************************
- * examples/uip/main.c
+ * examples/uip/uip_main.c
*
* Copyright (C) 2007, 2009-2012 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <gnutt@nuttx.org>
@@ -201,7 +201,7 @@ int uip_main(int argc, char *argv[])
while(1)
{
sleep(3);
- printf("main: Still running\n");
+ printf("uip_main: Still running\n");
#if CONFIG_NFILE_DESCRIPTORS > 0
fflush(stdout);
#endif