Kaydet (Commit) b2e888a0 authored tarafından Miklos Vajna's avatar Miklos Vajna

vcl: fix loplugin:implicitboolconversion warning

Change-Id: I3f84396def32c657f58842647e9af5d4a48e43be
üst 0b1e8399
...@@ -124,7 +124,7 @@ SAL_IMPLEMENT_MAIN_WITH_ARGS(argc, argv) ...@@ -124,7 +124,7 @@ SAL_IMPLEMENT_MAIN_WITH_ARGS(argc, argv)
{ {
SvFileStream aFileStream(out, StreamMode::READ); SvFileStream aFileStream(out, StreamMode::READ);
vcl::PNGReader aReader(aFileStream); vcl::PNGReader aReader(aFileStream);
ret = !!aReader.Read(); ret = (int) !!aReader.Read();
} }
else if (strcmp(argv[2], "bmp") == 0) else if (strcmp(argv[2], "bmp") == 0)
{ {
......
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