From: Ned Deily Date: Tue, 1 Jul 2014 06:31:14 +0000 (-0700) Subject: Issue #21891: remove extraneous semicolon. X-Git-Tag: v3.4.2rc1~281 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=529ea5d184c4b7a8ee118557c8a8f46016476e69;p=thirdparty%2FPython%2Fcpython.git Issue #21891: remove extraneous semicolon. --- diff --git a/Python/sysmodule.c b/Python/sysmodule.c index 2366a8c66fb9..840b6ee65a9e 100644 --- a/Python/sysmodule.c +++ b/Python/sysmodule.c @@ -1546,7 +1546,7 @@ const char *_PySys_ImplName = NAME; #define STRIFY(name) QUOTE(name) #define MAJOR STRIFY(PY_MAJOR_VERSION) #define MINOR STRIFY(PY_MINOR_VERSION) -#define TAG NAME "-" MAJOR MINOR; +#define TAG NAME "-" MAJOR MINOR const char *_PySys_ImplCacheTag = TAG; #undef NAME #undef QUOTE