diff options
author | Matt Oliver <protogonoi@gmail.com> | 2019-12-31 03:00:40 +1100 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2020-01-01 16:38:28 +0100 |
commit | 1fd8929450a6d701620caf60f39d997cccc4001b (patch) | |
tree | bdae0194bbc3418f5318d10bff91a57d5d9ad096 /compat | |
parent | d4d6280ab2e8552dfad0a7d1f0dd2c440192e97f (diff) | |
download | ffmpeg-1fd8929450a6d701620caf60f39d997cccc4001b.tar.gz |
compat/avisynth: Fix unicode compilation.
Reviewed-by: Stephen Hutchinson <qyot27@gmail.com>
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'compat')
-rw-r--r-- | compat/avisynth/avisynth_c.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compat/avisynth/avisynth_c.h b/compat/avisynth/avisynth_c.h index 8d17125adc..9ff9321552 100644 --- a/compat/avisynth/avisynth_c.h +++ b/compat/avisynth/avisynth_c.h @@ -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; |