From 0a18a6eecbaefed748a94b515f7f053072835b42 Mon Sep 17 00:00:00 2001 From: George Lebl Date: Thu, 14 Sep 2000 05:12:24 +0000 Subject: After some investigation found that fixme (#2553) was complete bollocks, Wed Sep 13 22:06:55 2000 George Lebl * libnautilus-extensions/nautilus-druid.c (nautilus_druid_size_request): After some investigation found that fixme (#2553) was complete bollocks, so I removed it. * libnautilus-extensions/nautilus-file.c (nautilus_file_get_uri): Apparently my current alpha compiler (egcs 1.1.2) is now more sensitive to uninitialized vars. This one is harmless, since there was a g_assert_not_reached for the case where it's uninited. * libnautilus-extensions/nautilus-scalable-font.c (invert_glyph), librsvg/test-ft-gtk.c (invert_glyph): YAIKES! casting to to (int) to get artithmetic. Changed to (long) but that's still Wrong(tm) * src/file-manager/fm-desktop-icon-view.c (get_sort_category): remove the "char *link_type", as it wasn't ever used, it was only freed thus causing havoc --- librsvg/test-ft-gtk.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'librsvg') diff --git a/librsvg/test-ft-gtk.c b/librsvg/test-ft-gtk.c index da49d2af2..8f2a53d7a 100644 --- a/librsvg/test-ft-gtk.c +++ b/librsvg/test-ft-gtk.c @@ -83,7 +83,7 @@ static void invert_glyph (guchar *buf, int rowstride, int width, int height) guint32 *middle; if (width >= 8 && ((rowstride & 3) == 0)) { - first = (-(int)buf) & 3; + first = (-(long)buf) & 3; n_words = (width - first) >> 2; last = first + (n_words << 2); -- cgit v1.2.1