Changeset: a0e3a80812a5 for MonetDB
URL: http://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=a0e3a80812a5
Modified Files:
        monetdb5/mal/mal_instruction.c
Branch: default
Log Message:

Minor textual change


diffs (16 lines):

diff --git a/monetdb5/mal/mal_instruction.c b/monetdb5/mal/mal_instruction.c
--- a/monetdb5/mal/mal_instruction.c
+++ b/monetdb5/mal/mal_instruction.c
@@ -747,10 +747,10 @@ newTypeVariable(MalBlkPtr mb, malType ty
 {
        int n, i;
        for (i = 0; i < mb->vtop; i++)
-               if (isTmpVar(mb, i) && getVarType(mb, i) == type)
+               if (isVarTypedef(mb, i) && getVarType(mb, i) == type)
                        break;
 
-       if( i < mb->vtop && isVarTypedef(mb,i))
+       if( i < mb->vtop )
                return i;
        n = newTmpVariable(mb, type);
        setVarTypedef(mb, n);
_______________________________________________
checkin-list mailing list
checkin-list@monetdb.org
https://www.monetdb.org/mailman/listinfo/checkin-list

Reply via email to