DEADSOFTWARE

Fix build
authorAlibek Omarov <a1ba.omarov@gmail.com>
Tue, 13 Feb 2018 20:16:18 +0000 (23:16 +0300)
committerAlibek Omarov <a1ba.omarov@gmail.com>
Tue, 13 Feb 2018 20:16:18 +0000 (23:16 +0300)
nanogl.cpp

index 90fa364ca1c75e308643ddcd4e227347bce2ffcc..fdc2a9a8543a7d17b4d909c7fa40a09cd5d9efd0 100644 (file)
@@ -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