summaryrefslogtreecommitdiff
path: root/browser-plugin
diff options
context:
space:
mode:
authorTing-Wei Lan <lantw44@gmail.com>2014-02-11 04:36:00 +0000
committerBastien Nocera <hadess@hadess.net>2014-02-11 13:47:28 +0100
commitc61a4a096f75b6f69e2f7c34361a12edc59a9994 (patch)
treea3621d36fd1aee67c40db41b36238a6b5f1ad2f6 /browser-plugin
parentaf87f39d303fe57318023c964597e1e7ea971cfc (diff)
downloadtotem-c61a4a096f75b6f69e2f7c34361a12edc59a9994.tar.gz
browser-plugin: Fix build when using C++11 mode
totemPlugin.cpp:169:15: error: invalid suffix on literal; C++11 requires a space between literal and identifier [-Wreserved-user-defined-literal] "Quicktime/"TOTEM_NARROWSPACE_VERSION; ^ https://bugzilla.gnome.org/show_bug.cgi?id=724095
Diffstat (limited to 'browser-plugin')
-rw-r--r--browser-plugin/totemPlugin.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/browser-plugin/totemPlugin.cpp b/browser-plugin/totemPlugin.cpp
index 337a8141b..e9998631f 100644
--- a/browser-plugin/totemPlugin.cpp
+++ b/browser-plugin/totemPlugin.cpp
@@ -166,11 +166,11 @@ static const char kPluginLongDescription[] =
static const char kPluginUserAgent[] =
#if defined(TOTEM_NARROWSPACE_PLUGIN)
- "Quicktime/"TOTEM_NARROWSPACE_VERSION;
+ "Quicktime/" TOTEM_NARROWSPACE_VERSION;
#elif defined(TOTEM_GMP_PLUGIN)
"Windows-Media-Player/10.00.00.4019";
#elif defined(TOTEM_VEGAS_PLUGIN)
- "Videos/"VERSION;
+ "Videos/" VERSION;
#else
"";
#endif