The following commit has been merged in the master branch: commit fd0dbc04f0b96226a7fde6a3b415dc75e03bc7da Author: Marek Lindner lindner_marek@yahoo.de Date: Tue Jan 9 13:45:54 2007 +0100
internal memory leak detection improved
diff --git a/posix.c b/posix.c index 046075a..27971e5 100644 --- a/posix.c +++ b/posix.c @@ -42,7 +42,7 @@ #include "allocate.h"
#define BAT_LOGO_PRINT(x,y,z) printf( "\x1B[%i;%iH%c", y + 1, x, z ) /* write char 'z' into column 'x', row 'y' */ -#define BAT_LOGO_END(x,y) printf("\x1B[8;0H");fflush(NULL);bat_wait( x, y ); /* end of current picture */ +#define BAT_LOGO_END(x,y) printf("\x1B[8;0H");fflush(NULL);bat_wait( x, y ); /* end of current picture */
extern struct vis_if vis_if;