From e7a36ef9120b5c22398b2c76289a779ce0295683 Mon Sep 17 00:00:00 2001 From: Doug Coleman Date: Fri, 2 Nov 2007 13:05:38 -0500 Subject: [PATCH] Fix error message for dlopen on windows --- vm/os-windows.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/vm/os-windows.c b/vm/os-windows.c index 6e39422134..421d90b223 100755 --- a/vm/os-windows.c +++ b/vm/os-windows.c @@ -51,8 +51,7 @@ void ffi_dlopen (F_DLL *dll, bool error) { dll->dll = NULL; if(error) - general_error(ERROR_FFI,F,F, - (void*)tag_object(get_error_message())); + general_error(ERROR_FFI,F,tag_object(get_error_message()),NULL); else return; }