From 7958218e242e04afe17c6f6478ead43a8a44d28e Mon Sep 17 00:00:00 2001 From: Mats Palmgren Date: Mon, 21 Feb 2011 21:43:54 +0100 Subject: [PATCH] Bug 635636 - Don't return a value from void function. a=bustage --- editor/libeditor/html/nsHTMLEditRules.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/editor/libeditor/html/nsHTMLEditRules.cpp b/editor/libeditor/html/nsHTMLEditRules.cpp index c4812cf6c47..212c49ed0d6 100644 --- a/editor/libeditor/html/nsHTMLEditRules.cpp +++ b/editor/libeditor/html/nsHTMLEditRules.cpp @@ -9203,7 +9203,7 @@ void nsHTMLEditRules::DocumentModifiedWorker() { if (!mHTMLEditor) { - return NS_OK; + return; } nsCOMPtr kungFuDeathGrip(mHTMLEditor); nsCOMPtr selection;