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

Merge branch 'master' into imlib2

This commit is contained in:
Brenden Matthews 2009-05-07 12:49:13 -06:00
commit a1fc53be97
2 changed files with 4 additions and 1 deletions

View File

@ -1,3 +1,6 @@
2009-05-07
* Fix occasional cpubar segfaults
2009-05-05
* Added some completely pointless OpenMP optimizations(?)

View File

@ -1299,7 +1299,7 @@ static struct text_object *construct_text_object(const char *s,
END OBJ(cached, INFO_BUFFERS)
#define SCAN_CPU(__arg, __var) { \
int __offset; \
if (__arg && sscanf(__arg, " cpu%u %n", &__var, &__offset)) \
if (__arg && sscanf(__arg, " cpu%u %n", &__var, &__offset) == 2) \
__arg += __offset; \
else \
__var = 0; \