diff options
| author | Leo Uino <leo@norisys.jp> | 2011-07-13 22:41:27 +0900 | 
|---|---|---|
| committer | Leo Uino <leo@norisys.jp> | 2011-07-13 22:41:27 +0900 | 
| commit | 44fc0ba93934ea9915fcd4f1902f49de57f2a949 (patch) | |
| tree | f6967870ab4d0382ce9585a120be41955142961a | |
| parent | 2280c632f390b6e6a682a38d9abee9f08e41db02 (diff) | |
| download | pdf-simple-sign-44fc0ba93934ea9915fcd4f1902f49de57f2a949.tar.gz pdf-simple-sign-44fc0ba93934ea9915fcd4f1902f49de57f2a949.tar.xz pdf-simple-sign-44fc0ba93934ea9915fcd4f1902f49de57f2a949.zip | |
Fix evil table of constants
| -rw-r--r-- | lpg/libqr/constants.c | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/lpg/libqr/constants.c b/lpg/libqr/constants.c index 86f08ff..797d853 100644 --- a/lpg/libqr/constants.c +++ b/lpg/libqr/constants.c @@ -92,7 +92,7 @@ const int QR_RS_BLOCK_COUNT[40][4][2] = {          {  1,  0,  1,  0,  1,  0,  1,  0 }, /*  2 */          {  1,  0,  1,  0,  2,  0,  2,  0 }, /*  3 */          {  1,  0,  2,  0,  2,  0,  4,  0 }, /*  4 */ -        {  1,  0,  2,  0,  2,  0,  2,  0 }, /*  5 */ +        {  1,  0,  2,  0,  2,  2,  2,  2 }, /*  5 */          {  2,  0,  4,  0,  4,  0,  4,  0 }, /*  6 */          {  2,  0,  4,  0,  2,  4,  4,  1 }, /*  7 */          {  2,  0,  2,  2,  4,  2,  4,  2 }, /*  8 */ | 
