diff options
author | dinoex <dinoex@FreeBSD.org> | 2010-03-29 14:32:45 +0800 |
---|---|---|
committer | dinoex <dinoex@FreeBSD.org> | 2010-03-29 14:32:45 +0800 |
commit | 816eb1c4393f028b18c15072416801a661cdcb48 (patch) | |
tree | dbf699c0eb8c762ba9f388cf64d76c4df29cfd10 /x11-fm/thunar/files | |
parent | a229117cb9a37c1a7c5bbd5fa51a39772f9d2dce (diff) | |
download | freebsd-ports-gnome-816eb1c4393f028b18c15072416801a661cdcb48.tar.gz freebsd-ports-gnome-816eb1c4393f028b18c15072416801a661cdcb48.tar.zst freebsd-ports-gnome-816eb1c4393f028b18c15072416801a661cdcb48.zip |
- fix build for png-1.4.1
Whitespace fixes
Diffstat (limited to 'x11-fm/thunar/files')
-rw-r--r-- | x11-fm/thunar/files/patch-thunar-vfs-thumb.c | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/x11-fm/thunar/files/patch-thunar-vfs-thumb.c b/x11-fm/thunar/files/patch-thunar-vfs-thumb.c index 0c794c8abeb1..96febbd462e3 100644 --- a/x11-fm/thunar/files/patch-thunar-vfs-thumb.c +++ b/x11-fm/thunar/files/patch-thunar-vfs-thumb.c @@ -1,11 +1,11 @@ ---- work.bk/Thunar-1.0.1/thunar-vfs/thunar-vfs-thumb.c 2009-01-12 12:38:49.000000000 -0800
-+++ work/Thunar-1.0.1/thunar-vfs/thunar-vfs-thumb.c 2010-03-28 19:57:36.000000000 -0700
-@@ -1169,7 +1169,7 @@
- goto done0;
-
- /* verify the png signature */
-- if (G_LIKELY (png_check_sig ((png_bytep) signature, sizeof (signature))))
-+ if (G_LIKELY (!png_sig_cmp ((png_bytep) signature, 0, sizeof (signature))))
- rewind (fp);
- else
- goto done0;
+--- thunar-vfs/thunar-vfs-thumb.c.orig 2009-01-12 21:38:49.000000000 +0100 ++++ thunar-vfs/thunar-vfs-thumb.c 2010-03-29 08:32:55.000000000 +0200 +@@ -1169,7 +1169,7 @@ + goto done0; + + /* verify the png signature */ +- if (G_LIKELY (png_check_sig ((png_bytep) signature, sizeof (signature)))) ++ if (G_LIKELY (!png_sig_cmp ((png_bytep) signature, 0, sizeof (signature)))) + rewind (fp); + else + goto done0; |