Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 730616b2 authored by Mark de Wever's avatar Mark de Wever Committed by Bartlomiej Zolnierkiewicz
Browse files

ide-tape: Buildfix when IDETAPE_DEBUG_LOG is set to 1.



The format specifier for rq->sector didn't specify the proper size and
signedness. Borislav Petkov discovered that the signedness for
rq->nr_sectors and rq->current_nr_sectors also were incorrect.

Signed-off-by: default avatarMark de Wever <koraq@xs4all.nl>
Acked-by: default avatarBorislav Petkov <petkovbb@gmail.com>
[bart: remove trailing whitespace]
Signed-off-by: default avatarBartlomiej Zolnierkiewicz <bzolnier@gmail.com>
parent f6bccf69
Loading
Loading
Loading
Loading
+4 −3
Original line number Diff line number Diff line
@@ -978,9 +978,10 @@ static ide_startstop_t idetape_do_request(ide_drive_t *drive,
	struct request *postponed_rq = tape->postponed_rq;
	u8 stat;

	debug_log(DBG_SENSE, "sector: %ld, nr_sectors: %ld,"
			" current_nr_sectors: %d\n",
			rq->sector, rq->nr_sectors, rq->current_nr_sectors);
	debug_log(DBG_SENSE, "sector: %llu, nr_sectors: %lu,"
			" current_nr_sectors: %u\n",
			(unsigned long long)rq->sector, rq->nr_sectors,
			rq->current_nr_sectors);

	if (!blk_special_request(rq)) {
		/* We do not support buffer cache originated requests. */