summaryrefslogtreecommitdiffstats
path: root/src/if_mzsch.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/if_mzsch.c')
-rw-r--r--src/if_mzsch.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/if_mzsch.c b/src/if_mzsch.c
index 41b6d0006f..2d87238fef 100644
--- a/src/if_mzsch.c
+++ b/src/if_mzsch.c
@@ -668,14 +668,14 @@ mzscheme_runtime_link_init(char *sch_dll, char *gc_dll, int verbose)
if (!hMzGC)
{
if (verbose)
- semsg(_(e_loadlib), gc_dll, GetWin32Error());
+ semsg(_(e_could_not_load_library_str_str), gc_dll, GetWin32Error());
return FAIL;
}
if (!hMzSch)
{
if (verbose)
- semsg(_(e_loadlib), sch_dll, GetWin32Error());
+ semsg(_(e_could_not_load_library_str_str), sch_dll, GetWin32Error());
return FAIL;
}
@@ -689,7 +689,7 @@ mzscheme_runtime_link_init(char *sch_dll, char *gc_dll, int verbose)
FreeLibrary(hMzGC);
hMzGC = 0;
if (verbose)
- semsg(_(e_loadfunc), thunk->name);
+ semsg(_(e_could_not_load_library_function_str), thunk->name);
return FAIL;
}
}
@@ -703,7 +703,7 @@ mzscheme_runtime_link_init(char *sch_dll, char *gc_dll, int verbose)
FreeLibrary(hMzGC);
hMzGC = 0;
if (verbose)
- semsg(_(e_loadfunc), thunk->name);
+ semsg(_(e_could_not_load_library_function_str), thunk->name);
return FAIL;
}
}