From: Andreas Fink Date: Tue, 23 Nov 2010 15:11:57 +0000 (+0000) Subject: *fix* make clock buffers a bit larger (1Kb ram is not really much buffer, but users... X-Git-Url: https://git.dogcows.com/gitweb?p=chaz%2Ftint2;a=commitdiff_plain;h=fc2b004e0760db0bd3760744626c5fb69b3fddf7 *fix* make clock buffers a bit larger (1Kb ram is not really much buffer, but users which have a long clock_tooltip or clock_time1 or clock_time2 are happy) --- diff --git a/src/clock/clock.c b/src/clock/clock.c index 9237861..38cfcde 100644 --- a/src/clock/clock.c +++ b/src/clock/clock.c @@ -43,9 +43,9 @@ char *clock_rclick_command; struct timeval time_clock; PangoFontDescription *time1_font_desc; PangoFontDescription *time2_font_desc; -static char buf_time[40]; -static char buf_date[40]; -static char buf_tooltip[40]; +static char buf_time[256]; +static char buf_date[256]; +static char buf_tooltip[512]; int clock_enabled; static timeout* clock_timeout;