Skip to content

Commit

Permalink
whoops
Browse files Browse the repository at this point in the history
  • Loading branch information
comex committed Jun 27, 2010
1 parent 135221a commit 61f546c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions food/fixups/cppfixups.cpp
Expand Up @@ -61,7 +61,7 @@ bool MetaData::setCString(unsigned int, const char *) {

class MediaBuffer {
public:
MediaBuffer(unsigned int);
MediaBuffer(size_t);
void release();
sp<MetaData> meta_data();
void *data() const;
Expand All @@ -73,7 +73,7 @@ class MediaBuffer {
size_t _range_offset, _range_length;
};
MediaBuffer::MediaBuffer(size_t size) {
fprintf(stderr, "MediaBuffer(%d)\n", size);
fprintf(stderr, "MediaBuffer(%zd)\n", size);
_range_offset = _range_length = 0;
}
void MediaBuffer::release() {
Expand Down

0 comments on commit 61f546c

Please sign in to comment.