Skip to content

Commit

Permalink
fix a small typo that was breaking some tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Whiteknight committed Nov 7, 2009
1 parent 0f19918 commit ddc652b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pmc/pla_matrix_types.h
Expand Up @@ -21,7 +21,7 @@ do { \
INDEX_XY_ROWMAJOR(x_max, y_max, x, y)))

#define ITEM_XY_ROWMAJOR(s, x_max, y_max, x, y) \
(s)[INDEX_XY_ROWMAJOR(x_max, y_max, x, x)]
(s)[INDEX_XY_ROWMAJOR(x_max, y_max, x, y)]

#define ITEM_XY_COLMAJOR(s, x_max, y_max, x, y) \
(s)[INDEX_XY_COLMAJOR(x_max, y_max, x, y)]
Expand Down

0 comments on commit ddc652b

Please sign in to comment.