1
0
Fork 0

fix compiler warning

This commit is contained in:
jsteemann 2018-09-24 14:07:51 +02:00
parent 069b456217
commit 84095911ef
1 changed files with 1 additions and 1 deletions

View File

@ -321,7 +321,7 @@ int TRI_InetPton6(char const* src, unsigned char* dst) {
* Since some memmove()'s erroneously fail to handle
* overlapping regions, we'll do the shift by hand.
*/
int const n = (int const)(tp - colonp);
int const n = (int)(tp - colonp);
int i;
if (tp == endp) {