Skip to content
This repository has been archived by the owner on Nov 3, 2021. It is now read-only.

Commit

Permalink
Merge "Fix compilation warning: incorrect format specifier for type '…
Browse files Browse the repository at this point in the history
…ssize_t'."
  • Loading branch information
gkasten authored and Gerrit Code Review committed Jun 28, 2013
2 parents d74a9ee + 7d40969 commit bdf33c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion media/libmediaplayerservice/MediaPlayerService.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -307,7 +307,7 @@ status_t MediaPlayerService::AudioCache::dump(int fd, const Vector<String16>& ar
mHeap->getBase(), mHeap->getSize(), mHeap->getFlags(), mHeap->getDevice());
result.append(buffer);
}
snprintf(buffer, 255, " msec per frame(%f), channel count(%d), format(%d), frame count(%ld)\n",
snprintf(buffer, 255, " msec per frame(%f), channel count(%d), format(%d), frame count(%zd)\n",
mMsecsPerFrame, mChannelCount, mFormat, mFrameCount);
result.append(buffer);
snprintf(buffer, 255, " sample rate(%d), size(%d), error(%d), command complete(%s)\n",
Expand Down

0 comments on commit bdf33c9

Please sign in to comment.