From 2cb3119e08ed1ed2cc12bd99c40c4c5e3fd94368 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Amadeusz=20S=C5=82awi=C5=84ski?= Date: Tue, 13 May 2014 23:41:31 +0200 Subject: [PATCH] WPrefs: Value stored to 'timage' is never read MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit three times in a row Signed-off-by: Amadeusz Sławiński --- WPrefs.app/Appearance.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/WPrefs.app/Appearance.c b/WPrefs.app/Appearance.c index f4069542..4bc47b93 100644 --- a/WPrefs.app/Appearance.c +++ b/WPrefs.app/Appearance.c @@ -646,18 +646,15 @@ static Pixmap renderTexture(WMScreen * scr, WMPropList * texture, int width, int case 'T': image = RMakeTiledImage(timage, width, height); RReleaseImage(timage); - timage = image; break; case 'C': image = RMakeCenteredImage(timage, width, height, &color); RReleaseImage(timage); - timage = image; break; case 'S': case 'M': image = RScaleImage(timage, width, height); RReleaseImage(timage); - timage = image; break; } }