8000 fix compiler warning · mnemosdev/arangodb@8409591 · GitHub
[go: up one dir, main page]

Skip to content

Commit 8409591

Browse files
committed
fix compiler warning
1 parent 069b456 commit 8409591

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/Basics/socket-utils.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -321,7 +321,7 @@ int TRI_InetPton6(char const* src, unsigned char* dst) {
321321
* Since some memmove()'s erroneously fail to handle
322322
* overlapping regions, we'll do the shift by hand.
323323
*/
324-
int const n = (int const)(tp - colonp);
324+
int const n = (int)(tp - colonp);
325325
int i;
326326

327327
if (tp == endp) {

0 commit comments

Comments
 (0)
0