Fix style coding violation (possibly causing confusion)

This commit is contained in:
Philippe Saint-Pierre 2011-11-28 12:58:31 -05:00
parent 7e2f796c90
commit 04847eccdf

View File

@ -502,10 +502,10 @@ void
ThrowOnInitCheckError(InitCheckable *item)
{
if (!item)
throw(status_t) B_ERROR;
throw (status_t)B_ERROR;
status_t error = item->InitCheck();
if (error != B_OK)
throw(status_t) error;
throw (status_t)error;
}
#if DEBUG