X-Git-Url: https://feistymeow.org/gitweb/?a=blobdiff_plain;f=nucleus%2Flibrary%2Ftextual%2Fstring_manipulation.cpp;h=bcd6ac5ee9de0275a6a32509cbe6df3117747714;hb=dd74823e9ff7b8b8cdfb709211f06d3e95bcdc83;hp=b2ba47480437849ce92d8dc23be30788e3c6a955;hpb=6fd0c83fb2f5fed78bc0014f912e77a0963bb962;p=feisty_meow.git diff --git a/nucleus/library/textual/string_manipulation.cpp b/nucleus/library/textual/string_manipulation.cpp index b2ba4748..bcd6ac5e 100644 --- a/nucleus/library/textual/string_manipulation.cpp +++ b/nucleus/library/textual/string_manipulation.cpp @@ -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));