Skip to content

Commit 667c2ae

Browse files
committed
fix [-Wincompatible-pointer-types] warning
1 parent 5d97952 commit 667c2ae

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/libmemcachedprotocol/binary_handler.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -933,7 +933,7 @@ stat_command_handler(const void *cookie, protocol_binary_request_header *header,
933933
.opaque = header->request.opaque,
934934
},
935935
}};
936-
rval = response_handler(cookie, header, &response);
936+
rval = response_handler(cookie, header, (void *) &response);
937937
}
938938
} else {
939939
rval = PROTOCOL_BINARY_RESPONSE_UNKNOWN_COMMAND;

0 commit comments

Comments
 (0)