GNOME Bugzilla – Bug 721987
unbreak browser plugin (fix type)
Last modified: 2014-01-11 14:07:43 UTC
Created attachment 265998 [details] [review] use correct type for SetTime Hi. The totem browser plugin does not build on OpenBSD: totemPlugin.cpp:306: error: prototype for 'void totemPlugin::SetTime(guint64)' does not match any in class 'totemPlugin' totemPlugin.h:409: error: candidate is: void totemPlugin::SetTime(uint64_t) The following diff fixes. Alright to push?
Review of attachment 265998 [details] [review]: Looks good to me. I didn’t realise guint64 is actually typedeffed in a platform-specific way (on 64-bit platforms, typedeffed to unsigned long). I had always assumed it was typedeffed to uint64_t. Thanks for the patch.
(In reply to comment #1) > Review of attachment 265998 [details] [review]: > > Looks good to me. I didn’t realise guint64 is actually typedeffed in a > platform-specific way (on 64-bit platforms, typedeffed to unsigned long). I had > always assumed it was typedeffed to uint64_t. Thanks for the patch. Thank you Philip. It's in b50fa143.