From af6b3b876572c3dfb76a7d38719b62f06ed6f946 Mon Sep 17 00:00:00 2001 From: Harry Moffat Date: Mon, 15 Nov 2004 20:51:04 +0000 Subject: [PATCH] Added a return statement. --- Cantera/clib/src/ct.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Cantera/clib/src/ct.cpp b/Cantera/clib/src/ct.cpp index 1233d0589..201208a40 100755 --- a/Cantera/clib/src/ct.cpp +++ b/Cantera/clib/src/ct.cpp @@ -7,6 +7,8 @@ * pointers are passed to or from the calling application. */ +/* $Id$ */ + // turn off warnings under Windows #ifdef WIN32 #pragma warning(disable:4786) @@ -987,6 +989,7 @@ extern "C" { int DLL_EXPORT setLogWriter(void* logger) { Logger* logwriter = (Logger*)logger; setLogger(logwriter); + return 0; } int DLL_EXPORT readlog(int n, char* buf) {