forked from starnakin/IronGOLEM
fix: function have the right name
This commit is contained in:
parent
3e51e2f661
commit
370657c291
@ -1,8 +1,9 @@
|
||||
putnum(number)
|
||||
{
|
||||
local str = itoa(number);
|
||||
local str;
|
||||
str = itoa(number);
|
||||
if (str == 0)
|
||||
return;
|
||||
print_str(str);
|
||||
putstr(str);
|
||||
free(str);
|
||||
}
|
||||
|
@ -35,8 +35,6 @@ test_int(value, reach_value, description)
|
||||
putstr(" != ");
|
||||
putnum(value);
|
||||
putstr("]");
|
||||
free(value_str);
|
||||
free(reach_value_str);
|
||||
}
|
||||
else
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user