From 04847eccdf2a7d2158959b44e4cbf18eb34fdbd4 Mon Sep 17 00:00:00 2001 From: Philippe Saint-Pierre Date: Mon, 28 Nov 2011 12:58:31 -0500 Subject: [PATCH] Fix style coding violation (possibly causing confusion) --- src/kits/tracker/Utilities.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/kits/tracker/Utilities.h b/src/kits/tracker/Utilities.h index 564efb560d..c420e6e58c 100644 --- a/src/kits/tracker/Utilities.h +++ b/src/kits/tracker/Utilities.h @@ -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