Skip to content

Commit 66418fc

Browse files
committed
minor notation fix
1 parent 1268ceb commit 66418fc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/vd.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ K dot(K a, K b) //NB: b can be a cheating 0-type with NULLs .. ?
119119
//if(4==a->t)a=retrieveByHandle(a);
120120

121121
if(4==a->t && 4==b->t)
122-
{ S s=(char*)malloc(2+strlen(*kS(a))+strlen(*kS(b)));
122+
{ S s=(S)malloc(2+strlen(*kS(a))+strlen(*kS(b)));
123123
s=strcpy(s,*kS(a)); strcat(s,"."); strcat(s,*kS(b));
124124
R *inKtree(&kK((kK(KTREE))[0])[1],s,0); }
125125
if(7==a->t) R vf_ex(&a,b); //Verb: "Apply" //TODO: my guess is this fails everywhere vf_ex does (derived verbs?) (|+) . (0;1) ???

0 commit comments

Comments
 (0)