From: Alibek Omarov Date: Tue, 13 Feb 2018 20:16:18 +0000 (+0300) Subject: Fix build X-Git-Url: http://deadsoftware.ru/gitweb?p=nanogl.git;a=commitdiff_plain;h=5bdf537d06bac340e861338af9c3fea99d3724cf Fix build --- diff --git a/nanogl.cpp b/nanogl.cpp index 90fa364..fdc2a9a 100644 --- a/nanogl.cpp +++ b/nanogl.cpp @@ -44,19 +44,19 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. #else #ifndef _MSC_VER #define LOGI( ... ) \ - printf( "I: "__VA_ARGS__ ); \ + printf( "I: " __VA_ARGS__ ); \ printf( "\n" ) #define LOGD( ... ) \ if ( DEBUG_NANO ) \ { \ - printf( "D: "__VA_ARGS__ ); \ + printf( "D: " __VA_ARGS__ ); \ printf( "\n" ); \ } #define LOGE( ... ) \ - printf( "E: "__VA_ARGS__ ); \ + printf( "E: " __VA_ARGS__ ); \ printf( "\n" ) #define LOGW( ... ) \ - printf( "W: "__VA_ARGS__ ); \ + printf( "W: " __VA_ARGS__ ); \ printf( "\n" ) #else #define LOGI printf