diff options
author | Linus Nordberg <linus@nordu.net> | 2011-09-27 19:43:59 +0200 |
---|---|---|
committer | Linus Nordberg <linus@nordu.net> | 2011-09-27 19:43:59 +0200 |
commit | 033822b9ecee9507bb337b4f16069a25a88fcc3b (patch) | |
tree | ba0c402d02e331cd68b23d340ada382959f6e7f9 /fticks.c | |
parent | 7f4c1aa892a4f42748aa7c6bbd99f200ef7f8674 (diff) |
Cast to avoid warning.
Diffstat (limited to 'fticks.c')
-rw-r--r-- | fticks.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -145,7 +145,7 @@ fticks_hashmac(const uint8_t *in, uint8_t *p = NULL; int i; - in_copy = calloc(1, strlen(in) + 1); + in_copy = calloc(1, strlen((const char *) in) + 1); if (in_copy == NULL) return -ENOMEM; |