From 6a02e838869160fef0701b8352d40fc1ae8301c2 Mon Sep 17 00:00:00 2001 From: Jesse Ruderman Date: Wed, 22 Oct 2008 17:55:04 -0700 Subject: [PATCH] Fix assertion message that was missing a space --- content/base/src/nsGenericElement.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/base/src/nsGenericElement.cpp b/content/base/src/nsGenericElement.cpp index 84197aba184..3fe199b8d47 100644 --- a/content/base/src/nsGenericElement.cpp +++ b/content/base/src/nsGenericElement.cpp @@ -2528,7 +2528,7 @@ nsGenericElement::BindToTree(nsIDocument* aDocument, nsIContent* aParent, NS_ASSERTION(!aBindingParent || IsRootOfNativeAnonymousSubtree() || !HasFlag(NODE_IS_IN_ANONYMOUS_SUBTREE) || aBindingParent->IsInNativeAnonymousSubtree(), - "Trying to re-bind content from native anonymous subtree to" + "Trying to re-bind content from native anonymous subtree to " "non-native anonymous parent!"); if (IsRootOfNativeAnonymousSubtree() || aParent && aParent->IsInNativeAnonymousSubtree()) {