fix argument order to string>memory
parent
2909d9141a
commit
3bcf2274b1
|
|
@ -118,8 +118,8 @@ INLINE void string_to_memory(F_STRING* s, BYTE* string)
|
||||||
|
|
||||||
void primitive_string_to_memory(void)
|
void primitive_string_to_memory(void)
|
||||||
{
|
{
|
||||||
F_STRING* str = untag_string(dpop());
|
|
||||||
BYTE* address = (BYTE*)unbox_cell();
|
BYTE* address = (BYTE*)unbox_cell();
|
||||||
|
F_STRING* str = untag_string(dpop());
|
||||||
string_to_memory(str,address);
|
string_to_memory(str,address);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue