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; }