use \0 instead of .

This commit is contained in:
Cloud Wu
2017-08-21 21:49:36 +08:00
parent 64a318a9f1
commit e48e6c40e7

View File

@@ -12,7 +12,7 @@ local address
local unique_id = 0
local function unique_string(str)
unique_id = unique_id + 1
return str .. ("." .. tostring(unique_id))
return str .. ("\0" .. tostring(unique_id))
end
local function monitor(pointer)