Skip to content

Commit

Permalink
servers/app/drawing: BitmapHWInterface: Return -1.
Browse files Browse the repository at this point in the history
-1 is the same as B_ERROR, but all of the other implementations of
this function "return -1", so do that to be consistent.
  • Loading branch information
waddlesplash committed Jul 2, 2015
1 parent 060bd5e commit 73df8e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/servers/app/drawing/BitmapHWInterface.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ BitmapHWInterface::ProposeMode(display_mode* candidate, const display_mode* low,
sem_id
BitmapHWInterface::RetraceSemaphore()
{
return B_ERROR;
return -1;
}


Expand Down

0 comments on commit 73df8e2

Please sign in to comment.