From: Marc Schink Date: Sun, 11 Apr 2021 19:36:00 +0000 (+0200) Subject: flash/nor/numicro: Use 'bool' data type X-Git-Url: https://git.gag.com/?a=commitdiff_plain;h=dc277057f57780354278cdc4876d393735f49369;p=fw%2Fopenocd flash/nor/numicro: Use 'bool' data type Change-Id: Ib4ee64dec9c1253ae45bc58e9f175ab36964180a Signed-off-by: Marc Schink Reviewed-on: http://openocd.zylin.com/6162 Tested-by: jenkins Reviewed-by: Tomas Vanek --- diff --git a/src/flash/nor/numicro.c b/src/flash/nor/numicro.c index 1971daa24..d9ea16d27 100644 --- a/src/flash/nor/numicro.c +++ b/src/flash/nor/numicro.c @@ -1132,7 +1132,7 @@ static const struct numicro_cpu_type NuMicroParts[] = { /* Private bank information for NuMicro. */ struct numicro_flash_bank { struct working_area *write_algorithm; - int probed; + bool probed; const struct numicro_cpu_type *cpu; };