Skip to content

Commit cbed7ef

Browse files
authored
freebsd: add missing semicolon in cam_tc (#426)
1 parent 972c610 commit cbed7ef

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/tape_drivers/freebsd/cam/cam_tc.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1244,7 +1244,7 @@ static int camtape_get_next_block_to_xfer(void *device, struct tc_position *pos)
12441244
camtape_process_errors(softc, rc, msg, "READPOS", true);
12451245
else {
12461246
pos->partition = ext_data.partition;
1247-
pos->block = scsi_8btou64(ext_data.last_object)
1247+
pos->block = scsi_8btou64(ext_data.last_object);
12481248
ltfsmsg(LTFS_DEBUG, 30398D, "next-block-to-xfer",
12491249
(unsigned long long) pos->block, 0, 0, softc->drive_serial);
12501250
}

0 commit comments

Comments
 (0)