diff mbox

[Branch,~glmark2-dev/glmark2/trunk] Rev 166: Scene: Don't include a trailing space in the scene information string.

Message ID 20111111111212.23901.91023.launchpad@ackee.canonical.com
State Accepted
Headers show

Commit Message

alexandros.frantzis@linaro.org Nov. 11, 2011, 11:12 a.m. UTC
------------------------------------------------------------
revno: 166
committer: Alexandros Frantzis <alexandros.frantzis@linaro.org>
branch nick: trunk
timestamp: Fri 2011-11-11 12:48:24 +0200
message:
  Scene: Don't include a trailing space in the scene information string.
modified:
  src/scene.cpp


--
lp:glmark2
https://code.launchpad.net/~glmark2-dev/glmark2/trunk

You are subscribed to branch lp:glmark2.
To unsubscribe from this branch go to https://code.launchpad.net/~glmark2-dev/glmark2/trunk/+edit-subscription
diff mbox

Patch

=== modified file 'src/scene.cpp'
--- src/scene.cpp	2011-11-08 13:57:38 +0000
+++ src/scene.cpp	2011-11-11 10:48:24 +0000
@@ -101,7 +101,7 @@ 
 {
     stringstream ss;
 
-    ss << "[" << name_ << "] " << Scene::construct_title(title) << " ";
+    ss << "[" << name_ << "] " << Scene::construct_title(title);
 
     return ss.str();
 }