summaryrefslogtreecommitdiff
path: root/apps/examples/thttpd
diff options
context:
space:
mode:
Diffstat (limited to 'apps/examples/thttpd')
-rw-r--r--apps/examples/thttpd/Makefile2
-rw-r--r--apps/examples/thttpd/thttpd_main.c (renamed from apps/examples/thttpd/main.c)2
2 files changed, 2 insertions, 2 deletions
diff --git a/apps/examples/thttpd/Makefile b/apps/examples/thttpd/Makefile
index 9df26af35..606e717dc 100644
--- a/apps/examples/thttpd/Makefile
+++ b/apps/examples/thttpd/Makefile
@@ -40,7 +40,7 @@ include $(APPDIR)/Make.defs
# THTTPD Web Server Example
ASRCS =
-CSRCS = main.c
+CSRCS = thttpd_main.c
AOBJS = $(ASRCS:.S=$(OBJEXT))
COBJS = $(CSRCS:.c=$(OBJEXT))
diff --git a/apps/examples/thttpd/main.c b/apps/examples/thttpd/thttpd_main.c
index 4f8315d95..f4d5d58db 100644
--- a/apps/examples/thttpd/main.c
+++ b/apps/examples/thttpd/thttpd_main.c
@@ -1,5 +1,5 @@
/****************************************************************************
- * examples/thttpd/main.c
+ * examples/thttpd/thttpd_main.c
*
* Copyright (C) 2009-2012 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <gnutt@nuttx.org>