scsi: fixed 80 characters limit as noticed by John.

This commit is contained in:
Jérôme Duval
2013-07-02 22:15:49 +02:00
parent 3c47ce8421
commit f0c63f83d2
@@ -313,8 +313,8 @@ dump_sg_table(const physical_entry *sg_list,
SHOW_FLOW(1, "count=%" B_PRIu32, sg_list_count);
for (cur_idx = sg_list_count; cur_idx >= 1; --cur_idx, ++sg_list) {
SHOW_FLOW(1, "addr=%" B_PRIxPHYSADDR ", size=%" B_PRIuPHYSADDR, sg_list->address,
sg_list->size);
SHOW_FLOW(1, "addr=%" B_PRIxPHYSADDR ", size=%" B_PRIuPHYSADDR,
sg_list->address, sg_list->size);
}
}