summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBastien Nocera <hadess@hadess.net>2011-12-03 12:23:24 +0100
committerBastien Nocera <hadess@hadess.net>2011-12-03 16:01:04 +0100
commit9c237e07c9be9f95664104e270e950b59fcc23d4 (patch)
treede5c3fc2af6146035b8017fee0f363de0a4c7fea
parent1f422ddcf03a5996934a15436f1de750d34c9d66 (diff)
downloadtotem-9c237e07c9be9f95664104e270e950b59fcc23d4.tar.gz
browser-plugin: Fix white-space problem
-rw-r--r--browser-plugin/totemPlugin.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/browser-plugin/totemPlugin.cpp b/browser-plugin/totemPlugin.cpp
index 3eaab649f..b7401d208 100644
--- a/browser-plugin/totemPlugin.cpp
+++ b/browser-plugin/totemPlugin.cpp
@@ -568,9 +568,9 @@ totemPlugin::ViewerFork ()
g_ptr_array_add (arr, g_strdup (DASHES TOTEM_OPTION_HIDDEN));
}
- if (mRepeat) {
- g_ptr_array_add (arr, g_strdup (DASHES TOTEM_OPTION_REPEAT));
- }
+ if (mRepeat) {
+ g_ptr_array_add (arr, g_strdup (DASHES TOTEM_OPTION_REPEAT));
+ }
if (mAudioOnly) {
g_ptr_array_add (arr, g_strdup (DASHES TOTEM_OPTION_AUDIOONLY));