deep mods
[feisty_meow.git] / nucleus / library / loggers / file_logger.cpp
index bd8c22a62e8f4c1ac51a4b337e19b24df3a71512..d21f7b5915d3669f79fce68f21586362acfbf111 100644 (file)
@@ -60,7 +60,7 @@ int static_chaos() {
 file_logger::file_logger()
 : _filename(new astring()),
   _file_limit(DEFAULT_LOG_FILE_SIZE),
-  _outfile(NIL),
+  _outfile(NULL_POINTER),
   _flock(new mutex)
 {
   name("");
@@ -69,7 +69,7 @@ file_logger::file_logger()
 file_logger::file_logger(const astring &initial_filename, int limit)
 : _filename(new astring()),
   _file_limit(limit),
-  _outfile(NIL),
+  _outfile(NULL_POINTER),
   _flock(new mutex)
 {
   name(initial_filename);