From 82dca52d3fa8082163931141b4e8257f8be8191c Mon Sep 17 00:00:00 2001 From: rentzsch Date: Thu, 30 Aug 2012 21:35:02 -0500 Subject: [PATCH] Cast to unsigned to avoid clang format string warning. --- templates/machine.m.motemplate | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/machine.m.motemplate b/templates/machine.m.motemplate index db7099f9..5995466e 100644 --- a/templates/machine.m.motemplate +++ b/templates/machine.m.motemplate @@ -144,7 +144,7 @@ const struct <$managedObjectClassName$>FetchedProperties <$managedObjectClassNam break; default: NSLog(@"WARN fetch request <$FetchRequest.name$>: 0 or 1 objects expected, %u found (substitutionVariables:%@, results:%@)", - [results count], + (unsigned)[results count], substitutionVariables, results); }