Kaydet (Commit) d7fbf737 authored tarafından Stephan Bergmann's avatar Stephan Bergmann

Be explicit when using bool as integral value

Change-Id: I21e24bd39a0872df3077d45c257251c253957489
üst 300cf0a0
......@@ -406,7 +406,7 @@ static NPError l_NPN_GetValue( NPP, NPNVariable variable, void* value )
break;
case NPNVSupportsXEmbedBool:
// asking xembed
*(int*)value = true;
*(int*)value = int(true);
SAL_INFO("extensions.plugin", "xembed requested");
break;
case NPNVToolkit:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment