1
0
mirror of https://github.com/Llewellynvdm/conky.git synced 2025-01-26 00:28:25 +00:00

Fix invalid call to close().

This commit is contained in:
Brenden Matthews 2009-08-04 23:06:13 -06:00
parent fbf746e53c
commit f10ffe07c4
2 changed files with 2 additions and 3 deletions

View File

@ -2148,7 +2148,7 @@ static struct text_object *construct_text_object(const char *s,
obj->type = OBJ_text;
return NULL;
}
DBGP("parsed platform args: '%s' '%s' %d %f %f\n", buf1, buf2, n, factor, offset);
DBGP("parsed platform args: '%s' '%s' %d %f %f", buf1, buf2, n, factor, offset);
obj->data.sysfs.fd = open_platform_sensor((*buf1) ? buf1 : 0, buf2, n,
&obj->data.sysfs.arg, obj->data.sysfs.devtype);
strncpy(obj->data.sysfs.type, buf2, 63);

View File

@ -929,10 +929,9 @@ int open_sysfs_sensor(const char *dir, const char *dev, const char *type, int n,
divbuf[divn] = '\0';
*divisor = atoi(divbuf);
}
close(divfd);
}
close(divfd);
return fd;
}