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