diff options
author | Victor Stinner <victor.stinner@haypocalc.com> | 2011-02-23 11:29:28 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@haypocalc.com> | 2011-02-23 11:29:28 (GMT) |
commit | 3eeee833915b96a15c60eafc317bb6822af2084c (patch) | |
tree | faebfa3a28021cb4336fd38dbee97dcb689d1133 /Python/dynload_dl.c | |
parent | 499e19340ec12aa49f0117b6af90ec4cab853960 (diff) | |
download | cpython-3eeee833915b96a15c60eafc317bb6822af2084c.zip cpython-3eeee833915b96a15c60eafc317bb6822af2084c.tar.gz cpython-3eeee833915b96a15c60eafc317bb6822af2084c.tar.bz2 |
dynload_dl.c: replace tabs by spaces
Diffstat (limited to 'Python/dynload_dl.c')
-rw-r--r-- | Python/dynload_dl.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/Python/dynload_dl.c b/Python/dynload_dl.c index dc00ec5..37519b2 100644 --- a/Python/dynload_dl.c +++ b/Python/dynload_dl.c @@ -10,17 +10,17 @@ extern char *Py_GetProgramName(void); const struct filedescr _PyImport_DynLoadFiletab[] = { - {".o", "rb", C_EXTENSION}, - {"module.o", "rb", C_EXTENSION}, - {0, 0} + {".o", "rb", C_EXTENSION}, + {"module.o", "rb", C_EXTENSION}, + {0, 0} }; dl_funcptr _PyImport_GetDynLoadFunc(const char *shortname, - const char *pathname, FILE *fp) + const char *pathname, FILE *fp) { - char funcname[258]; + char funcname[258]; - PyOS_snprintf(funcname, sizeof(funcname), "PyInit_%.200s", shortname); - return dl_loadmod(Py_GetProgramName(), pathname, funcname); + PyOS_snprintf(funcname, sizeof(funcname), "PyInit_%.200s", shortname); + return dl_loadmod(Py_GetProgramName(), pathname, funcname); } |