Fix bug 105344. r=saair, sr=darin.
git-svn-id: svn://10.0.0.236/trunk@141676 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
@@ -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");
|
||||
|
||||
|
||||
Reference in New Issue
Block a user