X-Git-Url: http://deadsoftware.ru/gitweb?p=nanogl.git;a=blobdiff_plain;f=nanogl.cpp;h=fdc2a9a8543a7d17b4d909c7fa40a09cd5d9efd0;hp=90fa364ca1c75e308643ddcd4e227347bce2ffcc;hb=5bdf537d06bac340e861338af9c3fea99d3724cf;hpb=b290a75821ffef2916fb904cb5caa53f7d05eaa8 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