Commit 9905c5d171ad8b457e160ee2b5ba98dd1cbf4d12
Fix compile warnings
Aman Gupta committed on 12/20/2010, 7:57:27 PMParent: 5a6f76975438236963b3e283d27a3706feab8533
Files changed
ext/mri/bcrypt.c | changed |
ext/mri/bcrypt.c | ||
---|---|---|
@@ -76,12 +76,12 @@ | ||
76 | 76 | static void encode_salt(char *, uint8_t *, uint16_t, uint8_t); |
77 | 77 | static void encode_base64(uint8_t *, uint8_t *, uint16_t); |
78 | 78 | static void decode_base64(uint8_t *, uint16_t, uint8_t *); |
79 | 79 | |
80 | -const static uint8_t Base64Code[] = | |
80 | +static const uint8_t Base64Code[] = | |
81 | 81 | "./ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789"; |
82 | 82 | |
83 | -const static uint8_t index_64[128] = { | |
83 | +static const uint8_t index_64[128] = { | |
84 | 84 | 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, |
85 | 85 | 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, |
86 | 86 | 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, |
87 | 87 | 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, |
Built with git-ssb-web