Skip to content

Commit

Permalink
Corrected method signature.
Browse files Browse the repository at this point in the history
  • Loading branch information
dlemstra committed Sep 2, 2024
1 parent a98c442 commit cbe46d9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Magick.Native/Magick.c
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ MAGICK_NATIVE_EXPORT void Magick_DisposeFonts(TypeInfo **list)
RelinquishMagickMemory((void *) list);
}

MAGICK_NATIVE_EXPORT void Magick_ResetRandomSeed()
MAGICK_NATIVE_EXPORT void Magick_ResetRandomSeed(void)
{
SetRandomSecretKey(ULONG_MAX);
}
Expand Down
2 changes: 1 addition & 1 deletion src/Magick.Native/Magick.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ MAGICK_NATIVE_EXPORT const char *Magick_GetFontName(const TypeInfo **, const siz

MAGICK_NATIVE_EXPORT void Magick_DisposeFonts(TypeInfo **);

MAGICK_NATIVE_EXPORT void Magick_ResetRandomSeed();
MAGICK_NATIVE_EXPORT void Magick_ResetRandomSeed(void);

MAGICK_NATIVE_EXPORT void Magick_SetDefaultFontFile(const char *, ExceptionInfo **);

Expand Down

0 comments on commit cbe46d9

Please sign in to comment.