summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2007-09-28 15:46:06 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2007-09-28 15:46:06 +0000
commit03ddb334b3c48ded5e8b8e26a1d633ca337dc81b (patch)
tree785177b76a23687e6b28f997483f84d77817e423
parent2007-09-28 Joel Sherrill <joel.sherrill@oarcorp.com> (diff)
downloadada-examples-03ddb334b3c48ded5e8b8e26a1d633ca337dc81b.tar.bz2
2007-09-28 Joel Sherrill <joel.sherrill@oarcorp.com>
* Makefile: Fix typo in name of program. * init.c: Eliminate warning.
-rw-r--r--gen-soconn/ChangeLog5
-rw-r--r--gen-soconn/Makefile2
-rw-r--r--gen-soconn/init.c1
3 files changed, 7 insertions, 1 deletions
diff --git a/gen-soconn/ChangeLog b/gen-soconn/ChangeLog
index e652a0f..a55a24b 100644
--- a/gen-soconn/ChangeLog
+++ b/gen-soconn/ChangeLog
@@ -1,5 +1,10 @@
2007-09-28 Joel Sherrill <joel.sherrill@oarcorp.com>
+ * Makefile: Fix typo in name of program.
+ * init.c: Eliminate warning.
+
+2007-09-28 Joel Sherrill <joel.sherrill@oarcorp.com>
+
* gsocket.h: Version submitted.
2007-09-27 Joel Sherrill <joel.sherrill@oarcorp.com>
diff --git a/gen-soconn/Makefile b/gen-soconn/Makefile
index ac7782a..4e7ae34 100644
--- a/gen-soconn/Makefile
+++ b/gen-soconn/Makefile
@@ -6,7 +6,7 @@
# RTEMS_MAKEFILE_PATH is typically set in an environment variable
#
-PGM=${ARCH}/gen-socconn.exe
+PGM=${ARCH}/gen-soccon.exe
# optional managers required
MANAGERS=all
diff --git a/gen-soconn/init.c b/gen-soconn/init.c
index 33f145e..5bed9dc 100644
--- a/gen-soconn/init.c
+++ b/gen-soconn/init.c
@@ -10,6 +10,7 @@ rtems_task Init(
rtems_task_argument ignored
)
{
+ extern int main( int, char ** );
main( 0, NULL );
exit( 0 );
}