We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 39441fb commit b125ef1Copy full SHA for b125ef1
1 file changed
c-ext/backend_c.c
@@ -154,7 +154,7 @@ void zstd_module_init(PyObject *m) {
154
unsigned zstd_version_min = 10506;
155
// if either compile-time or runtime version of libzstd is lower than expected, abort initialization
156
if (ZSTD_VERSION_NUMBER < zstd_version_min ||
157
- ZSTD_versionNumber() < ztd_version_min) {
+ ZSTD_versionNumber() < zstd_version_min) {
158
PyErr_Format(
159
PyExc_ImportError,
160
"zstd C API versions mismatch; Python bindings were not "
0 commit comments