Removing trailing whitespace from speaker.cc

Change-Id: I58ee9669136e3e2c3bda4cfec05e7ab5a9dafa70
Reviewed-on: https://weave-review.googlesource.com/1510
Reviewed-by: Johan Euphrosine <proppy@google.com>
diff --git a/examples/daemon/speaker/speaker.cc b/examples/daemon/speaker/speaker.cc
index 31a81a8..32591f9 100644
--- a/examples/daemon/speaker/speaker.cc
+++ b/examples/daemon/speaker/speaker.cc
@@ -88,13 +88,13 @@
     bool isMuted_status = false;
     if (cmd->GetParameters()->GetBoolean("isMuted", &isMuted_status)) {
       // Display this command in terminal.
-      LOG(INFO) << cmd->GetName() << " is " 
+      LOG(INFO) << cmd->GetName() << " is "
                 << (isMuted_status ? "muted" : "not muted");
 
       if (isMuted_status_ != isMuted_status) {
         isMuted_status_ = isMuted_status;
 
-        LOG(INFO) << "Speaker is now: " 
+        LOG(INFO) << "Speaker is now: "
                   << (isMuted_status ? "muted" : "not muted");
         UpdateSpeakerState();
       }