1
0
mirror of https://github.com/Llewellynvdm/conky.git synced 2024-11-15 09:44:04 +00:00
Brenden Matthews 2010-04-07 10:14:45 -07:00
parent c8e6874065
commit 9c5e5d86bd

View File

@ -463,7 +463,7 @@ int check_contains(char *f, char *s)
}
fclose(where);
} else {
NORM_ERR("Could not open the file");
NORM_ERR("Could not open the file '%s'", f);
}
return ret;
}
@ -1330,7 +1330,7 @@ void generate_text_internal(char *p, int p_max_size,
DO_JUMP;
} else if (spc) {
*spc = '\0';
if (check_contains(obj->data.s, spc + 1))
if (!check_contains(obj->data.s, spc + 1))
DO_JUMP;
*spc = ' ';
}