Using uint64_t instead of u_int64_t

This commit is contained in:
Felipe Zimmerle
2017-03-28 12:55:40 -03:00
parent d15b57895b
commit cf4deaa3a0
13 changed files with 17 additions and 17 deletions

View File

@@ -54,8 +54,8 @@ std::string ParityEven7bit::evaluate(std::string value,
return ret;
}
bool ParityEven7bit::inplace(unsigned char *input, u_int64_t input_len) {
u_int64_t i;
bool ParityEven7bit::inplace(unsigned char *input, uint64_t input_len) {
uint64_t i;
i = 0;
while (i < input_len) {