Skip to content

Commit

Permalink
Fix cstyle errors
Browse files Browse the repository at this point in the history
  • Loading branch information
dasjoe committed Jan 6, 2016
1 parent d9c8d22 commit 8786472
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions module/zfs/spa.c
Original file line number Diff line number Diff line change
Expand Up @@ -225,11 +225,11 @@ spa_prop_get_config(spa_t *spa, nvlist_t **nvp)

version = spa_version(spa);
if (version == zpool_prop_default_numeric(ZPOOL_PROP_VERSION)) {
spa_prop_add_list(*nvp, ZPOOL_PROP_VERSION, NULL, version,
ZPROP_SRC_DEFAULT);
spa_prop_add_list(*nvp, ZPOOL_PROP_VERSION, NULL,
version, ZPROP_SRC_DEFAULT);
} else {
spa_prop_add_list(*nvp, ZPOOL_PROP_VERSION, NULL, version,
ZPROP_SRC_LOCAL);
spa_prop_add_list(*nvp, ZPOOL_PROP_VERSION, NULL,
version, ZPROP_SRC_LOCAL);
}
}

Expand Down

0 comments on commit 8786472

Please sign in to comment.