From 7e94098f73923ed75abe6bcbe25b1b1492d443d3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Markus=20Fr=C3=B6schle?= Date: Sat, 24 Feb 2018 20:10:37 +0100 Subject: [PATCH] fix prototype warning --- exe/basflash.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exe/basflash.c b/exe/basflash.c index 4773bc5..3e0f813 100644 --- a/exe/basflash.c +++ b/exe/basflash.c @@ -419,7 +419,7 @@ static err_t simulate() return ret; } -static err_t flash(uint8_t *dst, uint8_t *src, uint32_t length) +static err_t flash(uint8_t *dst, uint8_t *src, size_t length) { err_t ret = OK;