From 529ea5d184c4b7a8ee118557c8a8f46016476e69 Mon Sep 17 00:00:00 2001 From: Ned Deily Date: Mon, 30 Jun 2014 23:31:14 -0700 Subject: Issue #21891: remove extraneous semicolon. --- Python/sysmodule.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Python/sysmodule.c b/Python/sysmodule.c index 2366a8c..840b6ee 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 -- cgit v0.12