Skip to content

Commit

Permalink
Fix ticket #240
Browse files Browse the repository at this point in the history
  • Loading branch information
teoliphant committed Aug 10, 2006
1 parent 2c7b4a5 commit e74b65a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions numpy/core/src/arraytypes.inc.src
Expand Up @@ -1292,7 +1292,7 @@ UNICODE_copyswapn (char *dst, intp dstride, char *src, intp sstride,
b = a + 3;
c=*a; *a++ = *b; *b-- = c;
c=*a; *a++ = *b; *b-- = c;
a += 1;
a += 2;
}
}
}
Expand Down Expand Up @@ -1323,7 +1323,7 @@ UNICODE_copyswap (char *dst, char *src, int swap, PyArrayObject *arr)
b = a + 3;
c=*a; *a++ = *b; *b-- = c;
c=*a; *a++ = *b; *b-- = c;
a += 1;
a += 2;
}
}
}
Expand Down

0 comments on commit e74b65a

Please sign in to comment.