Skip to content

Commit ea58ec3

Browse files
committed
style
1 parent cfb40ac commit ea58ec3

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

cmd/zfs/zfs_main.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4127,8 +4127,8 @@ zfs_do_send(int argc, char **argv)
41274127
};
41284128

41294129
/* check options */
4130-
while ((c = getopt_long(argc, argv, ":i:I:RDpvnPLeht:cwbd:", long_options,
4131-
NULL)) != -1) {
4130+
while ((c = getopt_long(argc, argv, ":i:I:RDpvnPLeht:cwbd:",
4131+
long_options, NULL)) != -1) {
41324132
switch (c) {
41334133
case 'i':
41344134
if (fromname)

module/zfs/dmu_redact.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -967,8 +967,8 @@ dmu_redact_snap(const char *snapname, nvlist_t *redactnvl,
967967
for (pair = nvlist_next_nvpair(redactnvl, NULL); err == 0 &&
968968
pair != NULL; pair = nvlist_next_nvpair(redactnvl, pair)) {
969969
const char *name = nvpair_name(pair);
970-
err = dsl_dataset_hold_flags(dp, name, DS_HOLD_FLAG_DECRYPT, FTAG,
971-
redactsnaparr + numsnaps);
970+
err = dsl_dataset_hold_flags(dp, name, DS_HOLD_FLAG_DECRYPT,
971+
FTAG, redactsnaparr + numsnaps);
972972
if (err != 0)
973973
break;
974974
dsl_dataset_long_hold(redactsnaparr[numsnaps], FTAG);

module/zfs/dmu_send.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1329,7 +1329,8 @@ send_range_after(const struct send_range *from, const struct send_range *to)
13291329
return (-1);
13301330
if (from_obj >= to_end_obj)
13311331
return (1);
1332-
int64_t cmp = AVL_CMP(to->type == OBJECT_RANGE, from->type == OBJECT_RANGE);
1332+
int64_t cmp = AVL_CMP(to->type == OBJECT_RANGE, from->type ==
1333+
OBJECT_RANGE);
13331334
if (unlikely(cmp))
13341335
return (cmp);
13351336
cmp = AVL_CMP(to->type == OBJECT, from->type == OBJECT);

0 commit comments

Comments
 (0)