1
0
mirror of https://github.com/Llewellynvdm/conky.git synced 2024-12-26 12:27:52 +00:00

fix previous commit

This commit is contained in:
Nikolas Garofil 2009-11-11 13:44:50 +01:00
parent db99693091
commit aa761584db

View File

@ -55,7 +55,7 @@ void print_pid(struct text_object *obj, char *p, int p_max_size)
infofile = fopen(obj->data.s, "r");
if(infofile) {
bytes_read = fread(buf, 1, p_max_size, infofile);
for(i = 0; i < read-1; i++) {
for(i = 0; i < bytes_read-1; i++) {
if(buf[i] == 0) {
buf[i] = ' ';
}