summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Dransfeld <sd@tango.flipp.net>2014-10-28 10:05:52 +0100
committerSebastian Dransfeld <sd@tango.flipp.net>2014-10-31 12:59:51 +0100
commit73a8d82331a950085a6936aa8519c1eea2150e66 (patch)
tree37c2f50e414545f5ae8639bfb1aeca2794186b1e
parent17d6bed1b84dd0540f7693184110406c220233ae (diff)
downloadevas_generic_loaders-73a8d82331a950085a6936aa8519c1eea2150e66.tar.gz
xcf: Remove self assignment
Fixes CID 63745
-rw-r--r--src/bin/xcf/pixelfuncs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/xcf/pixelfuncs.c b/src/bin/xcf/pixelfuncs.c
index f0c0754..acddad3 100644
--- a/src/bin/xcf/pixelfuncs.c
+++ b/src/bin/xcf/pixelfuncs.c
@@ -218,7 +218,7 @@ hsv_to_rgb (DATA8 *hue, DATA8 *saturation, DATA8 *value)
{
*hue = *value;
*saturation = *value;
- *value = *value;
+ /* *value = *value; */
}
else
{