summaryrefslogtreecommitdiff
path: root/graphics/exact-image/raw.patch
diff options
context:
space:
mode:
authorBenjamin Trigona-Harany <bosth@alumni.sfu.ca>2017-10-11 10:41:28 -0700
committerDavid Spencer <idlemoor@slackbuilds.org>2017-10-14 14:48:20 +0100
commit659ebafc0171a08dfbacee5b6b8c8acf3091e207 (patch)
treee2261eec2117650937590f8241dc168e9cf83149 /graphics/exact-image/raw.patch
parent60e052049b5b23735490fc98b5926e546be6c03e (diff)
downloadslackbuilds-659ebafc0171a08dfbacee5b6b8c8acf3091e207.tar.gz
graphics/exact-image: Updated for version 1.0.1.
Signed-off-by: Benjamin Trigona-Harany <bosth@alumni.sfu.ca>
Diffstat (limited to 'graphics/exact-image/raw.patch')
-rw-r--r--graphics/exact-image/raw.patch11
1 files changed, 0 insertions, 11 deletions
diff --git a/graphics/exact-image/raw.patch b/graphics/exact-image/raw.patch
deleted file mode 100644
index 555fef4fc1..0000000000
--- a/graphics/exact-image/raw.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- exact-image-0.9.2/codecs/raw.cc.orig 2017-07-05 09:07:52.988538841 +0700
-+++ exact-image-0.9.2/codecs/raw.cc 2017-07-05 09:08:21.813539168 +0700
-@@ -71,7 +71,7 @@
- if (!image.getRawData())
- return false;
-
-- return stream->write ((char*)image.getRawData(), image.stride()*image.h)
-+ return (bool) stream->write ((char*)image.getRawData(), image.stride()*image.h)
- /* ==
- (size_t) image.stride()*image.h*/;
- }