Changeset: b175905caa97 for MonetDB
URL: https://dev.monetdb.org/hg/MonetDB/rev/b175905caa97
Modified Files:
sql/backends/monet5/generator/generator.c
Branch: default
Log Message:
Don't shadow variable.
diffs (12 lines):
diff --git a/sql/backends/monet5/generator/generator.c
b/sql/backends/monet5/generator/generator.c
--- a/sql/backends/monet5/generator/generator.c
+++ b/sql/backends/monet5/generator/generator.c
@@ -176,7 +176,7 @@ VLTgenerator_noop(Client cntxt, MalBlkPt
if (s == 0 || (s > 0 && f > l) || (s < 0 && f < l) ||
is_##TPE##_nil(f) || is_##TPE##_nil(l)) \
throw(MAL, "generator.table",
\
SQLSTATE(42000) "Illegal generator range");
\
- BUN n = (BUN) ((l - f) / s);
\
+ n = (BUN) ((l - f) / s);
\
if ((TPE) (n * s + f) != l)
\
n++;
\
bn = COLnew(0, TYPE_##TPE, n, TRANSIENT);
\
_______________________________________________
checkin-list mailing list -- [email protected]
To unsubscribe send an email to [email protected]