summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/bin/xcf/main.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/bin/xcf/main.c b/src/bin/xcf/main.c
index 70ade8c..48f2751 100644
--- a/src/bin/xcf/main.c
+++ b/src/bin/xcf/main.c
@@ -622,7 +622,7 @@ xcf_load_image_props(void)
{
amount = (16 < prop_size ? 16 : prop_size);
image->cp += xcf_read_int8(image->file, buf, amount);
- prop_size -= (16 < amount ? 16 : amount);
+ prop_size -= amount;
}
}
break;
@@ -735,7 +735,7 @@ xcf_load_layer_props(Layer *layer)
{
amount = (16 < prop_size ? 16 : prop_size);
image->cp += xcf_read_int8 (image->file, buf, amount);
- prop_size -= (16 < amount ? 16 : amount);
+ prop_size -= amount;
}
}
break;
@@ -1005,7 +1005,7 @@ xcf_load_channel_props(Layer *layer)
{
amount = (16 < prop_size ? 16 : prop_size);
image->cp += xcf_read_int8(image->file, buf, amount);
- prop_size -= (16 < amount ? 16 : amount);
+ prop_size -= amount;
}
}
break;