Merge "Print size as unsigned when sending to framework." into nyc-dev
am: f84fe90714
* commit 'f84fe907141bcdb76425d5ba42913576f018a11c':
Print size as unsigned when sending to framework.
This commit is contained in:
commit
d6b13a70fb
1 changed files with 1 additions and 1 deletions
2
Disk.cpp
2
Disk.cpp
|
@ -272,7 +272,7 @@ status_t Disk::readMetadata() {
|
|||
}
|
||||
}
|
||||
|
||||
notifyEvent(ResponseCode::DiskSizeChanged, StringPrintf("%" PRId64, mSize));
|
||||
notifyEvent(ResponseCode::DiskSizeChanged, StringPrintf("%" PRIu64, mSize));
|
||||
notifyEvent(ResponseCode::DiskLabelChanged, mLabel);
|
||||
notifyEvent(ResponseCode::DiskSysPathChanged, mSysPath);
|
||||
return OK;
|
||||
|
|
Loading…
Reference in a new issue