Skip to content

Commit 200685a

Browse files
committed
Fix copy-and-paste error
1 parent 2584a02 commit 200685a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/freetypy.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ static PyMethodDef module_methods[] = {
125125
FT_Int major, minor, patch;
126126
char version_string[64];
127127

128-
FT_Library_Version(_ft2Library, &major, &minor, &patch);
128+
FT_Library_Version(ft_library, &major, &minor, &patch);
129129
sprintf(version_string, "%d.%d.%d", major, minor, patch);
130130
if (PyModule_AddStringConstant(m, "__freetype_version__", version_string)) {
131131
INITERROR;

0 commit comments

Comments
 (0)