Bug 1117772 - Return false from PluginInstanceParent::CreateBackground; r=baku

clang emits the following warning on this code, which is treated as an
error:
error: implicit conversion of nullptr constant to 'bool' [-Werror,-Wnull-conversion]
This commit is contained in:
Ehsan Akhgari 2015-01-05 09:57:32 -05:00
Родитель a41280816e
Коммит 67edad67ab
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -813,7 +813,7 @@ PluginInstanceParent::CreateBackground(const nsIntSize& aSize)
gfxImageFormat::RGB24);
return !!mBackground;
#else
return nullptr;
return false;
#endif
}