1
0
mirror of https://github.com/Llewellynvdm/conky.git synced 2024-11-17 18:45:10 +00:00

fix manual merge

This commit is contained in:
Nikolas Garofil 2010-11-20 17:25:06 +01:00
parent fcf318c6dd
commit c63f42a693

View File

@ -460,7 +460,7 @@ void print_loadavg(struct text_object *obj, char *p, int p_max_size)
void scan_no_update(struct text_object *obj, const char *arg)
{
obj->data.s = (char*) malloc(text_buffer_size);
obj->data.s = (char*) malloc(text_buffer_size.get(*state));
evaluate(arg, obj->data.s, text_buffer_size.get(*state));
obj->data.s = (char*) realloc(obj->data.s, strlen(obj->data.s) + 1);
}