fix argument order to string>memory

cvs
Mackenzie Straight 2004-12-23 03:23:13 +00:00
parent 2909d9141a
commit 3bcf2274b1
1 changed files with 1 additions and 1 deletions

View File

@ -118,8 +118,8 @@ INLINE void string_to_memory(F_STRING* s, BYTE* string)
void primitive_string_to_memory(void)
{
F_STRING* str = untag_string(dpop());
BYTE* address = (BYTE*)unbox_cell();
F_STRING* str = untag_string(dpop());
string_to_memory(str,address);
}