Skip to content

Commit

Permalink
freebsd: add missing semicolon in cam_tc (#426)
Browse files Browse the repository at this point in the history
  • Loading branch information
kev009 authored May 22, 2024
1 parent 972c610 commit cbed7ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tape_drivers/freebsd/cam/cam_tc.c
Original file line number Diff line number Diff line change
Expand Up @@ -1244,7 +1244,7 @@ static int camtape_get_next_block_to_xfer(void *device, struct tc_position *pos)
camtape_process_errors(softc, rc, msg, "READPOS", true);
else {
pos->partition = ext_data.partition;
pos->block = scsi_8btou64(ext_data.last_object)
pos->block = scsi_8btou64(ext_data.last_object);
ltfsmsg(LTFS_DEBUG, 30398D, "next-block-to-xfer",
(unsigned long long) pos->block, 0, 0, softc->drive_serial);
}
Expand Down

0 comments on commit cbed7ef

Please sign in to comment.