From bb0741af69b55ed5856f1e4181bfe6aea45e7fc9 Mon Sep 17 00:00:00 2001 From: chsieh Date: Thu, 5 May 2011 00:11:46 -0700 Subject: [PATCH] Syntax fix? --- .../iPhone/Classes/TestEntriesViewController.mm | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/libs/box2d/iPhone/Classes/TestEntriesViewController.mm b/libs/box2d/iPhone/Classes/TestEntriesViewController.mm index 49eb94e..f812a59 100644 --- a/libs/box2d/iPhone/Classes/TestEntriesViewController.mm +++ b/libs/box2d/iPhone/Classes/TestEntriesViewController.mm @@ -13,7 +13,7 @@ @synthesize delegate=_delegate; - (id)initWithStyle:(UITableViewStyle)style { - if (self = [super initWithStyle:style]) { + if ((self = [super initWithStyle:style])) { testCount = 0; TestEntry* e = g_testEntries; while (e->createFcn) -- 1.7.0.4