diff options
Diffstat (limited to 'Python/dynload_stub.c')
-rw-r--r-- | Python/dynload_stub.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Python/dynload_stub.c b/Python/dynload_stub.c index 5916048..69f8b45 100644 --- a/Python/dynload_stub.c +++ b/Python/dynload_stub.c @@ -6,4 +6,6 @@ #include "importdl.h" -const char *_PyImport_DynLoadFiletab[] = {NULL}; +const struct filedescr _PyImport_DynLoadFiletab[] = { + {0, 0} +}; |