Skip to content

Commit 3f4b93e

Browse files
committed
FIX: wrong macro in host calls (failed standalone library compilation)
1 parent 3c1d3d4 commit 3f4b93e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/core/n-image.c

+3-3
Original file line numberDiff line numberDiff line change
@@ -374,8 +374,8 @@ typedef struct REBCLR {
374374
codi.data = VAL_BIN(val_src_file);
375375
codi.len = VAL_LEN(val_src_file);
376376
}
377-
378-
OS_Load_Image(ser ? SERIES_DATA(ser) : NULL, frm, &codi);
377+
378+
OS_LOAD_IMAGE(ser ? SERIES_DATA(ser) : NULL, frm, &codi);
379379

380380
if(codi.error) {
381381
switch (codi.error) {
@@ -435,7 +435,7 @@ typedef struct REBCLR {
435435
// }
436436
//}
437437

438-
OS_Save_Image(IS_FILE(val_dest) ? SERIES_DATA(ser) : NULL, &codi);
438+
OS_SAVE_IMAGE(IS_FILE(val_dest) ? SERIES_DATA(ser) : NULL, &codi);
439439

440440
if(codi.error) {
441441
switch (codi.error) {

0 commit comments

Comments
 (0)