diff options
author | Michael Nottebrock <lofi@FreeBSD.org> | 2004-07-31 17:21:01 +0800 |
---|---|---|
committer | Michael Nottebrock <lofi@FreeBSD.org> | 2004-07-31 17:21:01 +0800 |
commit | fea7a23b8b2f63bdfa00465ddd92ed4d52386fae (patch) | |
tree | 2b855453ab61c8d260b40f2d3610bc057e69fcc1 /graphics/imlib2 | |
parent | ef8dc8e8479ff694f5a98ca3f23bd294984ced14 (diff) | |
download | freebsd-ports-gnome-fea7a23b8b2f63bdfa00465ddd92ed4d52386fae.tar.gz freebsd-ports-gnome-fea7a23b8b2f63bdfa00465ddd92ed4d52386fae.tar.zst freebsd-ports-gnome-fea7a23b8b2f63bdfa00465ddd92ed4d52386fae.zip |
Fix some warnings which have become errors with gcc 3.4.
Obtained from: enlightenment CVS
Diffstat (limited to 'graphics/imlib2')
-rw-r--r-- | graphics/imlib2/files/patch-src_rgbadraw.c | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/graphics/imlib2/files/patch-src_rgbadraw.c b/graphics/imlib2/files/patch-src_rgbadraw.c new file mode 100644 index 000000000000..e9b730c7cb3a --- /dev/null +++ b/graphics/imlib2/files/patch-src_rgbadraw.c @@ -0,0 +1,19 @@ +--- src/rgbadraw.c.orig Sat Jul 31 11:10:28 2004 ++++ src/rgbadraw.c Sat Jul 31 11:16:05 2004 +@@ -2357,14 +2357,14 @@ + /* last span on line and still not < ss->x */ + if (ps) + ps->next = s; +- nospans: ++ nospans: ; + } + } + if (i == y2) + goto nolines; + i += step; + } +- nolines: ++ nolines: ; + } + for (i = 0; i < h; i++) + { |