Merge branch 'master' of feistymeow.org:feisty_meow
[feisty_meow.git] / nucleus / library / textual / string_manipulation.cpp
index b2ba47480437849ce92d8dc23be30788e3c6a955..bcd6ac5ee9de0275a6a32509cbe6df3117747714 100644 (file)
@@ -323,7 +323,7 @@ abyte string_manipulation::char_to_hex(char to_convert)
 
 byte_array string_manipulation::string_to_hex(const astring &to_convert)
 {
-  byte_array to_return(0, NIL);
+  byte_array to_return(0, NULL_POINTER);
   for (int i = 0; i < to_convert.length() / 2; i++) {
     int str_index = i * 2;
     abyte first_byte = char_to_hex(to_convert.get(str_index));