Skip to content

Commit

Permalink
making "test style failed" happy
Browse files Browse the repository at this point in the history
./module/zfs/arc.c: 3470: line > 80 characters
make: *** [checkstyle] Error 1
program finished with exit code 2

+

removing the superfluous white space at the end of the line 3470
  • Loading branch information
kernelOfTruth committed Mar 20, 2015
1 parent 6ccbfb1 commit a37d4a8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion module/zfs/arc.c
Original file line number Diff line number Diff line change
Expand Up @@ -3467,7 +3467,8 @@ arc_access(arc_buf_hdr_t *hdr, kmutex_t *hash_lock)
DTRACE_PROBE1(new_state__mfu, arc_buf_hdr_t *, hdr);
arc_change_state(arc_mfu, hdr, hash_lock);
} else {
cmn_err(CE_PANIC, "invalid arc state 0x%p", hdr->b_l1hdr.b_state);
cmn_err(CE_PANIC, "invalid arc state 0x%p",
hdr->b_l1hdr.b_state);
}
}

Expand Down

0 comments on commit a37d4a8

Please sign in to comment.