Skip to content

Commit

Permalink
9036 zfs: duplicate 'const' declaration specifier
Browse files Browse the repository at this point in the history
Reviewed by: Yuri Pankov <yuripv@yuripv.net>
Reviewed by: Matthew Ahrens <mahrens@delphix.com>
Approved by: Dan McDonald <danmcd@joyent.com>
  • Loading branch information
tsoome authored and Dan McDonald committed Feb 7, 2018
1 parent 46ac8fd commit f02c28e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions usr/src/uts/common/fs/zfs/vdev_indirect_mapping.c
Expand Up @@ -133,8 +133,8 @@ vdev_indirect_mapping_size(vdev_indirect_mapping_t *vim)
static int
dva_mapping_overlap_compare(const void *v_key, const void *v_array_elem)
{
const uint64_t const *key = v_key;
const vdev_indirect_mapping_entry_phys_t const *array_elem =
const uint64_t *key = v_key;
const vdev_indirect_mapping_entry_phys_t *array_elem =
v_array_elem;
uint64_t src_offset = DVA_MAPPING_GET_SRC_OFFSET(array_elem);

Expand Down

0 comments on commit f02c28e

Please sign in to comment.