SGITranslator: fix too few arguments to formatting function
Pointed out by LGTM Change-Id: I0f83a3ba92d941c6e8acba02c77afce3cb40f56f Reviewed-on: https://review.haiku-os.org/c/haiku/+/4627 Tested-by: Commit checker robot <[email protected]> Reviewed-by: waddlesplash <[email protected]>
This commit is contained in:
committed by
waddlesplash
parent
f4742397e0
commit
c224d63cac
@@ -421,7 +421,7 @@ SGITranslator::translate_from_bits(BPositionIO *inSource, uint32 outType,
|
|||||||
ret = sgiImage->WriteRow(rows[z], y, z);
|
ret = sgiImage->WriteRow(rows[z], y, z);
|
||||||
if (ret < B_OK) {
|
if (ret < B_OK) {
|
||||||
syslog(LOG_ERR,
|
syslog(LOG_ERR,
|
||||||
"WriteRow() returned %s!\n"), strerror(ret);
|
"WriteRow() returned %s!\n", strerror(ret));
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user