Remove trailing whitespace.

This commit is contained in:
Georg Brandl 2010-07-31 19:29:15 +00:00
parent ec5ae3b9f5
commit e87c0e1eaf
1 changed files with 1 additions and 1 deletions

View File

@ -9,7 +9,7 @@ const char *
Py_GetVersion(void)
{
static char version[250];
PyOS_snprintf(version, sizeof(version), "%.80s (%.80s) %.80s",
PyOS_snprintf(version, sizeof(version), "%.80s (%.80s) %.80s",
PY_VERSION, Py_GetBuildInfo(), Py_GetCompiler());
return version;
}