From a9652f11ade5566c2429fb16902fe1cc3f2f1f70 Mon Sep 17 00:00:00 2001 From: Tim Peters Date: Fri, 6 Jan 2006 02:45:17 +0000 Subject: Py_GetBuildInfo(): Squash compiler warnings. Locals `revision` and `branch` were const-incorrect. --- Modules/getbuildinfo.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Modules/getbuildinfo.c b/Modules/getbuildinfo.c index 8e00e4f..7b47aea 100644 --- a/Modules/getbuildinfo.c +++ b/Modules/getbuildinfo.c @@ -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); -- cgit v0.12