Modified description text into module_freepercentdisk

This commit is contained in:
fermin831 2017-04-17 11:56:02 +02:00
parent 60a5b9fc5e
commit b512b90756
1 changed files with 1 additions and 1 deletions

View File

@ -1141,7 +1141,7 @@ Pandora_Module_Factory::getModuleFromDefinition (string definition) {
// Added a description with the memory free
char buffer[100];
unsigned long memory = Pandora_Wmi::getDiskFreeSpace(module_freedisk_percent);
if (sprintf(buffer, "Free memory %s %dMB",
if (sprintf(buffer, "Free space on drive %s %dMB",
module_freedisk_percent.c_str(), memory) > 0) {
module->setDescription(buffer);
}