diff options
author | Guido van Rossum <guido@python.org> | 1999-01-27 17:53:11 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1999-01-27 17:53:11 (GMT) |
commit | 54ecc3d24f52ae45ca54a24167e434915c88b60f (patch) | |
tree | 2bc2d15f1e6a6178a992a9ce0b4975697f1ef71b /Modules/getbuildinfo.c | |
parent | b5cebfe164fbf6c862e8aa9fb91628d1b8cf76be (diff) | |
download | cpython-54ecc3d24f52ae45ca54a24167e434915c88b60f.zip cpython-54ecc3d24f52ae45ca54a24167e434915c88b60f.tar.gz cpython-54ecc3d24f52ae45ca54a24167e434915c88b60f.tar.bz2 |
Patches by William Lewis for Nextstep descendants.
Diffstat (limited to 'Modules/getbuildinfo.c')
-rw-r--r-- | Modules/getbuildinfo.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Modules/getbuildinfo.c b/Modules/getbuildinfo.c index 3f9ee52..49793b8 100644 --- a/Modules/getbuildinfo.c +++ b/Modules/getbuildinfo.c @@ -30,7 +30,7 @@ const char * Py_GetBuildInfo() { - static char buildinfo[40]; - sprintf(buildinfo, "#%d, %.12s, %.8s", BUILD, DATE, TIME); + static char buildinfo[50]; + sprintf(buildinfo, "#%d, %.20s, %.9s", BUILD, DATE, TIME); return buildinfo; } |