Merge branch 'master' of feistymeow.org:feisty_meow
[feisty_meow.git] / nucleus / library / tests_structures / bogon.cpp
index 4bd881233839af20ff9c1d21d1e18349e0245bcd..6ea707183740c7058d6093b2fe5f9ce5feb9575c 100644 (file)
@@ -23,7 +23,7 @@
 using namespace basis;
 using namespace structures;
 
-bogon::bogon(abyte *to_copy) : my_held(NIL)
+bogon::bogon(abyte *to_copy) : my_held(NULL_POINTER)
 {
   if (to_copy) {
     astring t((char *)to_copy);
@@ -34,7 +34,7 @@ bogon::bogon(abyte *to_copy) : my_held(NIL)
   }
 }
 
-bogon::bogon(const bogon &to_copy) : my_held(NIL) { operator = (to_copy); }
+bogon::bogon(const bogon &to_copy) : my_held(NULL_POINTER) { operator = (to_copy); }
 
 bogon &bogon::operator = (const bogon &to_copy) {
   if (this == &to_copy) return *this;