servers/app/drawing: BitmapHWInterface: Return -1.

-1 is the same as B_ERROR, but all of the other implementations of
this function "return -1", so do that to be consistent.
This commit is contained in:
Augustin Cavalier 2015-07-02 17:29:34 -04:00
parent 060bd5ebb9
commit 73df8e25af

View File

@ -144,7 +144,7 @@ BitmapHWInterface::ProposeMode(display_mode* candidate, const display_mode* low,
sem_id
BitmapHWInterface::RetraceSemaphore()
{
return B_ERROR;
return -1;
}