summaryrefslogtreecommitdiff
path: root/librsvg
diff options
context:
space:
mode:
authorGeorge Lebl <jirka@5z.com>2000-09-14 05:12:24 +0000
committerGeorge Lebl <jirka@src.gnome.org>2000-09-14 05:12:24 +0000
commit0a18a6eecbaefed748a94b515f7f053072835b42 (patch)
tree0fb2bc6e647e3aad4d53c6a2fe54aa6ece3ee25f /librsvg
parent112e0cbcfeb55d644adb87a7e8c8fa736e5c0292 (diff)
downloadnautilus-0a18a6eecbaefed748a94b515f7f053072835b42.tar.gz
After some investigation found that fixme (#2553) was complete bollocks,
Wed Sep 13 22:06:55 2000 George Lebl <jirka@5z.com> * 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
Diffstat (limited to 'librsvg')
-rw-r--r--librsvg/test-ft-gtk.c2
1 files changed, 1 insertions, 1 deletions
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);