mirror of
https://github.com/genodelabs/genode.git
synced 2025-04-07 19:34:56 +00:00
vbox: prevent warning
This commit is contained in:
parent
da21a3c338
commit
143c703669
@ -48,7 +48,7 @@ class Genodefb : public Framebuffer
|
||||
if (!width)
|
||||
return E_INVALIDARG;
|
||||
|
||||
*width = _width > _fb_mode.width() ? _fb_mode.width() : _width;
|
||||
*width = (int)_width > _fb_mode.width() ? _fb_mode.width() : _width;
|
||||
return S_OK;
|
||||
}
|
||||
|
||||
@ -57,7 +57,7 @@ class Genodefb : public Framebuffer
|
||||
if (!height)
|
||||
return E_INVALIDARG;
|
||||
|
||||
*height = _height > _fb_mode.height() ? _fb_mode.height() : _height;
|
||||
*height = (int)_height > _fb_mode.height() ? _fb_mode.height() : _height;
|
||||
return S_OK;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user