beos: Account for change in atomic_add() prototype in Haiku

Since the scheduler branch merge, atomic_add() takes a pointer
to int32, doesn't require the target to be volatile anymore.
This commit is contained in:
François Revol 2014-01-28 15:14:34 +01:00
parent 27fdcb90f2
commit 443d6f3e04
1 changed files with 1 additions and 1 deletions

View File

@ -80,7 +80,7 @@ struct gui_window {
// those are the last queued event of their kind,
// we can safely drop others and avoid wasting cpu.
// number of pending resizes
vint32 pending_resizes;
int32 pending_resizes;
// accumulated rects of pending redraws
//volatile BMessage *lastRedraw;
// UNUSED YET