aboutsummaryrefslogtreecommitdiff
path: root/lpg/libqr/constants.h
diff options
context:
space:
mode:
authorLeo Uino <leo@norisys.jp>2011-07-19 12:04:15 +0900
committerLeo Uino <leo@norisys.jp>2011-07-19 12:04:15 +0900
commitd4abb878df167875bb66d1e0debe853cb6b88b1b (patch)
tree206e5638d866382b66737058593bf483b7e92c06 /lpg/libqr/constants.h
parenta3234f7d7e36ad7d1bad6a85b868b05addf40e9b (diff)
downloadpdf-simple-sign-d4abb878df167875bb66d1e0debe853cb6b88b1b.tar.gz
pdf-simple-sign-d4abb878df167875bb66d1e0debe853cb6b88b1b.tar.xz
pdf-simple-sign-d4abb878df167875bb66d1e0debe853cb6b88b1b.zip
Fix some types
Diffstat (limited to 'lpg/libqr/constants.h')
-rw-r--r--lpg/libqr/constants.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lpg/libqr/constants.h b/lpg/libqr/constants.h
index c13ae5a..b1f7493 100644
--- a/lpg/libqr/constants.h
+++ b/lpg/libqr/constants.h
@@ -17,7 +17,7 @@ static const unsigned int QR_FORMAT_POLY = 0x537;
static const unsigned int QR_VERSION_POLY = 0x1F25;
/* A QR-code word is always 8 bits, but CHAR_BIT might not be */
-static const unsigned int QR_WORD_BITS = 8;
+static const int QR_WORD_BITS = 8;
extern const int QR_ALIGNMENT_LOCATION[40][7];
extern const int QR_DATA_WORD_COUNT[40][4];