mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-03-12 02:11:23 +00:00
Make use of +[NSString stringWithUnsignedLongLong:] from NGExtensions
This commit is contained in:
@@ -20,8 +20,6 @@
|
||||
* Boston, MA 02111-1307, USA.
|
||||
*/
|
||||
|
||||
#include <inttypes.h>
|
||||
|
||||
#import <Foundation/NSArray.h>
|
||||
#import <Foundation/NSDictionary.h>
|
||||
#import <Foundation/NSException.h>
|
||||
@@ -29,6 +27,7 @@
|
||||
#import <Foundation/NSValue.h>
|
||||
|
||||
#import <NGExtensions/NSObject+Logs.h>
|
||||
#import <NGExtensions/NSObject+Values.h>
|
||||
|
||||
#import <SOGo/NSString+Utilities.h>
|
||||
|
||||
@@ -55,7 +54,7 @@ static NSMutableDictionary *mappingRegistry = nil;
|
||||
static inline id
|
||||
MAPIStoreMappingKeyFromId (uint64_t idNbr)
|
||||
{
|
||||
return [NSString stringWithFormat: @"0x%.16"PRIx64, idNbr];
|
||||
return [NSString stringWithUnsignedLongLong: idNbr];
|
||||
}
|
||||
|
||||
static int
|
||||
|
||||
Reference in New Issue
Block a user