From 0db65843ff620f388bf9fadaf1ce968274da961d Mon Sep 17 00:00:00 2001 From: =?utf8?q?Amadeusz=20S=C5=82awi=C5=84ski?= Date: Sun, 18 May 2014 13:32:45 +0200 Subject: [PATCH] wrlib: Value stored to 'nptr' is never read MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Amadeusz Sławiński --- wrlib/rotate.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/wrlib/rotate.c b/wrlib/rotate.c index f04b95eb..fead8ae7 100644 --- a/wrlib/rotate.c +++ b/wrlib/rotate.c @@ -77,7 +77,6 @@ RImage *RRotateImage(RImage * image, float angle) offs = nwidth * 4; optr = image->data; - nptr = img->data; for (x = 0; x < nwidth; x++) { nptr = img->data + x * 4; @@ -160,7 +159,6 @@ RImage *RRotateImage(RImage * image, float angle) offs = nwidth * 4; optr = image->data; - nptr = img->data; for (x = 0; x < nwidth; x++) { nptr = img->data + x * 4; -- 2.11.4.GIT