From b91d52592b69a152c2d07a8e7300fc07f83c5323 Mon Sep 17 00:00:00 2001 From: Geoff McLane Date: Thu, 18 Feb 2016 13:57:47 +0100 Subject: [PATCH] Fix to K&R C to compile with MSVC --- src/clean.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/clean.c b/src/clean.c index a2a9070..a979fed 100644 --- a/src/clean.c +++ b/src/clean.c @@ -2020,8 +2020,8 @@ void TY_(CleanWord2000)( TidyDocImpl* doc, Node *node) * proprietary checks to near the end of the cleanup process, * meaning this result would not ordinarily be displayed. */ - TY_(ReportError)(doc, NULL, node, PROPRIETARY_ELEMENT); Node* next; + TY_(ReportError)(doc, NULL, node, PROPRIETARY_ELEMENT); DiscardContainer( doc, node, &next ); node = next; continue;