From 3b0175c135a18b2e25d7cb2b33e07c91750929fa Mon Sep 17 00:00:00 2001 From: Bert Belder Date: Thu, 31 Mar 2011 14:30:25 +0200 Subject: [PATCH] Echo demo fix --- libol.vcxproj | 7 ++++++- test/echo-demo.c | 4 +++- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/libol.vcxproj b/libol.vcxproj index fd9b7d7f..7a68a3df 100644 --- a/libol.vcxproj +++ b/libol.vcxproj @@ -70,12 +70,17 @@ - + + + + true + + diff --git a/test/echo-demo.c b/test/echo-demo.c index 1fadb19f..025ceb85 100644 --- a/test/echo-demo.c +++ b/test/echo-demo.c @@ -2,9 +2,11 @@ #include "echo.h" int main(int argc, char** argv) { + int r; + ol_init(); - int r = echo_start(8000); + r = echo_start(8000); if (r) { return r; }