Removed unused vars and fixed warnings, mysql_backend.c is still missing

This commit is contained in:
Massimiliano Pinto
2013-06-26 10:27:25 +02:00
parent 0113088af6
commit d5590c6d0e
4 changed files with 30 additions and 39 deletions

View File

@ -151,7 +151,7 @@ char *gw_bin2hex(char *out, const uint8_t *in, unsigned int len) {
// note that XOR(str1, XOR(str1 CONCAT str2)) == str2
// and that XOR(str1, str2) == XOR(str2, str1)
///////////////////////////////////////////////////////
void gw_str_xor(char *output, const uint8_t *input1, const uint8_t *input2, unsigned int len) {
void gw_str_xor(uint8_t *output, const uint8_t *input1, const uint8_t *input2, unsigned int len) {
const uint8_t *input1_end = NULL;
input1_end = input1 + len;