Bug 1302922: Add missing space in new "Refresh driver waiting" logging. r=nical draft
authorDaniel Holbert <dholbert@cs.stanford.edu>
Wed, 14 Sep 2016 20:21:49 -0700
changeset 413902 517abdfe0be6eec715deb3514ec59189e438085e
parent 413901 a387818ed08a57cc9d292c19dbd0a66f37ee94c3
child 531332 3100dc118d27af6195b7219d930819d27b9a8861
push id29547
push userdholbert@mozilla.com
push dateThu, 15 Sep 2016 03:22:21 +0000
reviewersnical
bugs1302922
milestone51.0a1
Bug 1302922: Add missing space in new "Refresh driver waiting" logging. r=nical MozReview-Commit-ID: 2B1mopmTAFa
layout/base/nsRefreshDriver.cpp
--- a/layout/base/nsRefreshDriver.cpp
+++ b/layout/base/nsRefreshDriver.cpp
@@ -2058,17 +2058,17 @@ nsRefreshDriver::WillRefresh(mozilla::Ti
 bool
 nsRefreshDriver::IsWaitingForPaint(mozilla::TimeStamp aTime)
 {
   if (mTestControllingRefreshes) {
     return false;
   }
 
   if (aTime > (mMostRecentTick + TimeDuration::FromMilliseconds(mWarningThreshold * 1000))) {
-    gfxCriticalNote << "Refresh driver waiting for the compositor for"
+    gfxCriticalNote << "Refresh driver waiting for the compositor for "
                     << (aTime - mMostRecentTick).ToSeconds()
                     << " seconds.";
     mWarningThreshold *= 2;
   }
 
   if (mWaitingForTransaction) {
     mSkippedPaints = true;
     return true;