diff options
author | Antoine Jacoutot <ajacoutot@gnome.org> | 2014-01-11 13:39:42 +0100 |
---|---|---|
committer | Antoine Jacoutot <ajacoutot@gnome.org> | 2014-01-11 13:43:57 +0100 |
commit | b50fa14361c28ea26c55bf2462bb1f815287a92d (patch) | |
tree | a6c0f87e364635818d78b7ec9983c8c90310fa63 | |
parent | a5b0bf2a54118b4fd6e3b5af0e5500e3b5ae52f9 (diff) | |
download | totem-b50fa14361c28ea26c55bf2462bb1f815287a92d.tar.gz |
browser-plugin: use correct type for SetTime.
https://bugzilla.gnome.org/show_bug.cgi?id=721987
-rw-r--r-- | browser-plugin/totemPlugin.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/browser-plugin/totemPlugin.cpp b/browser-plugin/totemPlugin.cpp index 0c1211264..337a8141b 100644 --- a/browser-plugin/totemPlugin.cpp +++ b/browser-plugin/totemPlugin.cpp @@ -303,7 +303,7 @@ totemPlugin::Command (const char *aCommand) } void -totemPlugin::SetTime (guint64 aTime) +totemPlugin::SetTime (uint64_t aTime) { D ("SetTime '%lu'", aTime); |