diff options
Diffstat (limited to 'x11/gnome-applets/files')
-rw-r--r-- | x11/gnome-applets/files/patch-gweather_weather.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/x11/gnome-applets/files/patch-gweather_weather.c b/x11/gnome-applets/files/patch-gweather_weather.c new file mode 100644 index 000000000..ceb720580 --- /dev/null +++ b/x11/gnome-applets/files/patch-gweather_weather.c @@ -0,0 +1,11 @@ +--- gweather/weather.c.orig Mon Dec 8 12:47:00 2003 ++++ gweather/weather.c Mon Dec 8 12:50:03 2003 +@@ -1915,7 +1915,7 @@ + degree = "F"; + + g_snprintf(buf, sizeof (buf), "%d\302\260%s", +- (int)lrint(info->temp), degree); ++ (int)rint(info->temp), degree); + + return buf; + } |