diff options
author | Sebastian Dransfeld <sd@tango.flipp.net> | 2014-10-28 10:05:52 +0100 |
---|---|---|
committer | Sebastian Dransfeld <sd@tango.flipp.net> | 2014-10-31 12:59:51 +0100 |
commit | 73a8d82331a950085a6936aa8519c1eea2150e66 (patch) | |
tree | 37c2f50e414545f5ae8639bfb1aeca2794186b1e | |
parent | 17d6bed1b84dd0540f7693184110406c220233ae (diff) | |
download | evas_generic_loaders-73a8d82331a950085a6936aa8519c1eea2150e66.tar.gz |
xcf: Remove self assignment
Fixes CID 63745
-rw-r--r-- | src/bin/xcf/pixelfuncs.c | 2 |
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 { |