Skip to content

Commit

Permalink
-1 needed in big endian fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
mattdowle committed Oct 10, 2014
1 parent dd7e9a0 commit 9bd554a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/forder.c
Original file line number Diff line number Diff line change
Expand Up @@ -515,7 +515,7 @@ size_t colSize=8; // the size of the column type (4 or 8). Just 8 currently unt
static void dradix_r(unsigned char *xsub, int *osub, int n, int radix);

#ifdef WORDS_BIGENDIAN
#define RADIX_BYTE colSize-radix
#define RADIX_BYTE colSize-radix-1
#else
#define RADIX_BYTE radix
#endif
Expand Down

0 comments on commit 9bd554a

Please sign in to comment.