mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-02-25 20:01:50 +00:00
Fix bug 105344. r=saair, sr=darin.
This commit is contained in:
parent
890ddacffe
commit
2ecc9ece0f
@ -188,15 +188,15 @@ nsAboutCache::VisitDevice(const char *deviceID,
|
||||
value = 0;
|
||||
deviceInfo->GetMaximumSize(&value);
|
||||
mBuffer.Append("<td><tt>");
|
||||
mBuffer.AppendInt(value);
|
||||
mBuffer.Append(" Bytes</tt></td>\n</tr>\n");
|
||||
mBuffer.AppendInt(value/1024);
|
||||
mBuffer.Append(" k</tt></td>\n</tr>\n");
|
||||
|
||||
mBuffer.Append("\n<tr>\n<td><b>Storage in use: </b></td>\n");
|
||||
mBuffer.Append("<td><tt>");
|
||||
value = 0;
|
||||
deviceInfo->GetTotalSize(&value);
|
||||
mBuffer.AppendInt(value);
|
||||
mBuffer.Append(" Bytes</tt></td>\n</tr>\n");
|
||||
mBuffer.AppendInt(value/1024);
|
||||
mBuffer.Append(" k</tt></td>\n</tr>\n");
|
||||
|
||||
mBuffer.Append("</table>\n");
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user