Skip to content
This repository has been archived by the owner on Aug 4, 2019. It is now read-only.

Commit

Permalink
Formatting stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
dvor committed Oct 15, 2014
1 parent acbabc0 commit cca664a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Antidote/ToxManager+PrivateAvatars.m
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ - (void)qRegisterAvatarCallbacksAndSetup

const uint8_t *bytes = [data bytes];

DDLogInfo(@"ToxManager+PrivateAvatars: found avatar, setting it. Length = %lu", data.length);
DDLogInfo(@"ToxManager+PrivateAvatars: found avatar, setting it. Length = %lu", (unsigned long)data.length);

tox_set_avatar(self.tox, TOX_AVATAR_FORMAT_PNG, bytes, (uint32_t)data.length);
}
Expand Down
2 changes: 1 addition & 1 deletion Antidote/ToxManager+PrivateFiles.m
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ - (void)qUploadData:(NSData *)data withFileName:(NSString *)originalFileName toC
{
NSAssert(dispatch_get_specific(kIsOnToxManagerQueue), @"Must be on ToxManager queue");

DDLogInfo(@"ToxManager: upload data with fileName %@, size %lu", originalFileName, data.length);
DDLogInfo(@"ToxManager: upload data with fileName %@, size %lu", originalFileName, (unsigned long)data.length);

if (chat.users.count > 1) {
DDLogError(@"ToxManager: send message... group chats aren't supported yet");
Expand Down

0 comments on commit cca664a

Please sign in to comment.