[gimp] Added closing brace that got lost when applying fix for modulo procedure.
- From: Kevin Cozens <kcozens src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gimp] Added closing brace that got lost when applying fix for modulo procedure.
- Date: Mon, 29 Aug 2011 18:10:02 +0000 (UTC)
commit fe20e7b181bb182ee55502e1af4c653d9256f3cb
Author: Kevin Cozens <kcozens svn gnome org>
Date: Mon Aug 29 14:06:18 2011 -0400
Added closing brace that got lost when applying fix for modulo procedure.
plug-ins/script-fu/tinyscheme/scheme.c | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)
---
diff --git a/plug-ins/script-fu/tinyscheme/scheme.c b/plug-ins/script-fu/tinyscheme/scheme.c
index 1af760d..9dcab5e 100644
--- a/plug-ins/script-fu/tinyscheme/scheme.c
+++ b/plug-ins/script-fu/tinyscheme/scheme.c
@@ -519,6 +519,7 @@ static num num_mod(num a, num b) {
/* modulo should have same sign as second operand */
if (res * e2 < 0) {
res+=e2;
+ }
ret.value.ivalue=res;
return ret;
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]