From e62d115fe9d8ae74446fe69b54e5fef0326e6452 Mon Sep 17 00:00:00 2001 From: robby valles Date: Mon, 13 May 2013 15:49:10 -0600 Subject: [PATCH] fixing build warning cast time result to (unsigned int) --- OAMutableURLRequest.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OAMutableURLRequest.m b/OAMutableURLRequest.m index f222252..cd149ed 100644 --- a/OAMutableURLRequest.m +++ b/OAMutableURLRequest.m @@ -125,7 +125,7 @@ - (void)prepare { - (void)_generateTimestamp { [timestamp release]; - timestamp = [[NSString alloc]initWithFormat:@"%d", time(NULL)]; + timestamp = [[NSString alloc]initWithFormat:@"%d", (unsigned int) time(NULL)]; } - (void)_generateNonce {