Bug fix for printing ...
[satune.git] / src / common.h
index cc12ef8c354c746863bec0b9f641dbbe38a080b5..3a0eeaa01c4dd3a0ad0c8e9f7416968ef323f968 100644 (file)
 #include "time.h"
 
 
-#if 1
+#if 0
 extern int model_out;
 extern int model_err;
 extern int switch_alloc;
 
-#define model_dprintf(fd, fmt, ...) do { switch_alloc = 1; dprintf(fd, fmt, ## __VA_ARGS__); switch_alloc = 0; } while (0)
+#define model_dprintf(fd, fmt, ...) do { int oldsw = switch_alloc; switch_alloc = 1; dprintf(fd, fmt, ## __VA_ARGS__); switch_alloc = oldsw; } while (0)
 
 #define model_print(fmt, ...) do { model_dprintf(model_out, fmt, ## __VA_ARGS__); } while (0)
 #define model_print_err(fmt, ...) do { model_dprintf(model_err, fmt, ## __VA_ARGS__); } while (0)
@@ -55,9 +55,9 @@ void assert_hook(void);
                if (!(expr)) { \
                        fprintf(stderr, "Error: assertion failed in %s at line %d\n", __FILE__, __LINE__); \
                        /* print_trace(); // Trace printing may cause dynamic memory allocation */ \
-                       assert_hook();                           \
-                       exit(EXIT_FAILURE); \
-               } \
+                       assert_hook();                                                                                                   \
+                       exit(EXIT_FAILURE);     \
+               }       \
        } while (0)
 #else
 #define ASSERT(expr) \