Felix Singer has uploaded this change for review. ( https://review.coreboot.org/c/flashrom/+/67883 )
Change subject: jlink_spi.c: Move function argument into previous line ......................................................................
jlink_spi.c: Move function argument into previous line
Signed-off-by: Felix Singer felixsinger@posteo.net Change-Id: I13b7f37adb242abbbd3a2961e7cdc4cf7ec578d8 --- M jlink_spi.c 1 file changed, 11 insertions(+), 2 deletions(-)
git pull ssh://review.coreboot.org:29418/flashrom refs/changes/83/67883/1
diff --git a/jlink_spi.c b/jlink_spi.c index 4dd108d..2a76a4a 100644 --- a/jlink_spi.c +++ b/jlink_spi.c @@ -362,8 +362,7 @@ size_t length; char *firmware_version;
- ret = jaylink_get_firmware_version(jaylink_devh, &firmware_version, - &length); + ret = jaylink_get_firmware_version(jaylink_devh, &firmware_version, &length);
if (ret != JAYLINK_OK) { msg_perr("jaylink_get_firmware_version() failed: %s.\n", jaylink_strerror(ret));