]> git.sur5r.net Git - bacula/bacula/blobdiff - bacula/src/lib/smartall.h
!!! I didn't run the regression tests.!!!
[bacula/bacula] / bacula / src / lib / smartall.h
index a319ec526046f3815fbe466405ec7054ce187b41..bd0614c28c3aa2eda6150eeb0a6bdeaa28e628d4 100644 (file)
@@ -89,7 +89,7 @@ extern void *b_malloc();
 
 #ifdef SMARTALLOC
 
-#define New(type) new(__FILE__, __LINE__ type
+#define New(type) new(__FILE__, __LINE__) type /* BUG 2 brace is missing */
 
 #undef SMARTALLOC 
 #define SMARTALLOC SMARTALLOC
@@ -125,7 +125,6 @@ void *operator new[](size_t s) throw() { return 0; }
  
 
 #else
-
 #define New(type) new type
 
 class SMARTALLOC