Py_GetBuildInfo(): Squash compiler warnings.

Locals `revision` and `branch` were const-incorrect.
This commit is contained in:
Tim Peters 2006-01-06 02:45:17 +00:00
parent e86e7a5b62
commit a9652f11ad
1 changed files with 3 additions and 3 deletions

View File

@ -24,9 +24,9 @@ const char *
Py_GetBuildInfo(void)
{
static char buildinfo[50];
char *revision = Py_SubversionRevision();
char *sep = *revision ? ":" : "";
char *branch = Py_SubversionShortBranch();
const char *revision = Py_SubversionRevision();
const char *sep = *revision ? ":" : "";
const char *branch = Py_SubversionShortBranch();
PyOS_snprintf(buildinfo, sizeof(buildinfo),
"%s%s%s, %.20s, %.9s", branch, sep, revision,
DATE, TIME);