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)
|
putnum(number)
|
||||||
{
|
{
|
||||||
local str = itoa(number);
|
local str;
|
||||||
|
str = itoa(number);
|
||||||
if (str == 0)
|
if (str == 0)
|
||||||
return;
|
return;
|
||||||
print_str(str);
|
putstr(str);
|
||||||
free(str);
|
free(str);
|
||||||
}
|
}
|
||||||
|
@ -35,8 +35,6 @@ test_int(value, reach_value, description)
|
|||||||
putstr(" != ");
|
putstr(" != ");
|
||||||
putnum(value);
|
putnum(value);
|
||||||
putstr("]");
|
putstr("]");
|
||||||
free(value_str);
|
|
||||||
free(reach_value_str);
|
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user