Remove some parameter subscriptions to save space.

This commit is contained in:
Matt McCormick (thewtex) 2010-02-25 00:03:02 -06:00
parent d83d5e302d
commit 00a85129fa

@ -83,7 +83,6 @@ string cpu_string()
meter_count++; meter_count++;
} }
oss << "CPU:";
oss << meter; oss << meter;
oss.width( 5 ); oss.width( 5 );
oss << percentage; oss << percentage;
@ -125,8 +124,7 @@ string mem_string()
} }
meminfo_file.close(); meminfo_file.close();
oss << "Mem: "; oss << used_mem / 1024 << '/' << total_mem / 1024 << "MB";
oss << used_mem / 1024 << '/' << total_mem / 1024;
return oss.str(); return oss.str();
} }