fixed a warning

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@19223 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Stefano Ceccherini 2006-11-07 14:01:32 +00:00
parent 37425ede90
commit eea29ee34b

View File

@ -244,7 +244,7 @@ BScrollBar::Archive(BMessage *data, bool deep) const
err = data->AddInt32("_orient",(int32)fOrientation);
if (err != B_OK)
return err;
err = data->AddInt32("_prop",fProportion);
err = data->AddInt32("_prop",(int32)fProportion);
return err;
}