Commit 1fd89294 authored by Matt Oliver's avatar Matt Oliver Committed by Michael Niedermayer

compat/avisynth: Fix unicode compilation.

Reviewed-by: 's avatarStephen Hutchinson <qyot27@gmail.com>
Signed-off-by: 's avatarMichael Niedermayer <michael@niedermayer.cc>
parent d4d6280a
......@@ -1096,7 +1096,7 @@ AVSC_INLINE AVS_Library * avs_load_library() {
AVS_Library *library = (AVS_Library *)malloc(sizeof(AVS_Library));
if (library == NULL)
return NULL;
library->handle = LoadLibrary("avisynth");
library->handle = LoadLibraryA("avisynth");
if (library->handle == NULL)
goto fail;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment