Skip to content

Commit

Permalink
uC compile fix
Browse files Browse the repository at this point in the history
  • Loading branch information
folkertvanheusden committed Oct 9, 2024
1 parent 11d3d95 commit 5a8f704
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -396,7 +396,7 @@ bool server::push_response(com_client *const cc, session *const ses, iscsi_pdu_b

DOLOG(logging::ll_debug, "server::push_response", cc->get_endpoint_name(), "SCSI: stream %u sectors starting at LBA %" PRIu64 ", iSCSI: %u", stream_parameters.n_sectors, stream_parameters.lba, reply_to.get_ExpDatLen());

size_t buffer_n = MAX_DATA_SEGMENT_SIZE;
uint64_t buffer_n = MAX_DATA_SEGMENT_SIZE;

uint32_t scsi_has = stream_parameters.n_sectors * s->get_block_size();
uint32_t iscsi_wants = reply_to.get_ExpDatLen();
Expand Down

0 comments on commit 5a8f704

Please sign in to comment.