From 7dc2640a750b547a3513d35715c0c59efb58c15a Mon Sep 17 00:00:00 2001 From: "gtm.daemon" Date: Tue, 24 Jul 2012 22:00:34 +0000 Subject: [Author: dmaclach] Some more google toolbox cleanup. TBR=thomasvl DELTA=25 (6 added, 2 deleted, 17 changed) --- Foundation/GTMStackTraceTest.m | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'Foundation/GTMStackTraceTest.m') diff --git a/Foundation/GTMStackTraceTest.m b/Foundation/GTMStackTraceTest.m index ab29213..a581c76 100644 --- a/Foundation/GTMStackTraceTest.m +++ b/Foundation/GTMStackTraceTest.m @@ -67,7 +67,8 @@ STAssertGreaterThan(depth, (size_t)4, nil); // All that we got have symbols for (NSUInteger lp = 0 ; lp < depth ; ++lp) { - STAssertNotNULL(descs[lp].symbol, @"didn't get a symbol at depth %lu", lp); + STAssertNotNULL(descs[lp].symbol, @"didn't get a symbol at depth %lu", + (unsigned long)lp); } // Do it again, but don't give it enough space (to make sure it handles that) @@ -78,7 +79,8 @@ STAssertLessThan(depth, fullDepth, nil); // All that we got have symbols for (NSUInteger lp = 0 ; lp < depth ; ++lp) { - STAssertNotNULL(descs[lp].symbol, @"didn't get a symbol at depth %lu", lp); + STAssertNotNULL(descs[lp].symbol, @"didn't get a symbol at depth %lu", + (unsigned long)lp); } } -- cgit v1.2.3