diff options
Diffstat (limited to 'hybrids.c')
-rw-r--r-- | hybrids.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -95,7 +95,7 @@ fnReplicateFirst(Array *left, Array *right) } if(result->type == AtypeArray) for(int j = 0; j < npos*cellsize; j++) - incref(result->arraydata[to*cellsize+j]); + incarrayref(result->arraydata[to*cellsize+j]); } freearray(fill); freearray(left); @@ -153,7 +153,7 @@ fnExpandFirst(Array *left, Array *right) } if(result->type == AtypeArray) for(int j = 0; j < npos*cellsize; j++) - incref(result->arraydata[to*cellsize+j]); + incarrayref(result->arraydata[to*cellsize+j]); if(right->shape[0] != 1 && !neg) from++; } |