From e86e7a5b62250ab3a17c020bdeb0213a971f2585 Mon Sep 17 00:00:00 2001 From: Tim Peters Date: Fri, 6 Jan 2006 02:42:46 +0000 Subject: [PATCH] svnversion_init(): Use standard layout for function defn. --- Python/sysmodule.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Python/sysmodule.c b/Python/sysmodule.c index 9a135ed69f..5bbe950224 100644 --- a/Python/sysmodule.c +++ b/Python/sysmodule.c @@ -943,7 +943,8 @@ static char branch[50]; static char shortbranch[50]; static const char *svn_revision; -static void svnversion_init(void) +static void +svnversion_init(void) { const char *python, *br_start, *br_end, *br_end2, *svnversion; int len, istag; -- 2.50.1