From e14e5d2f7488b87d3d3f8308521bac6d2ea5d263 Mon Sep 17 00:00:00 2001 From: Stefan Rueger Date: Tue, 11 Oct 2022 14:49:44 +0100 Subject: [PATCH] Update NEWS --- NEWS | 2 ++ src/term.c | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/NEWS b/NEWS index 9260c6cb..0cba791f 100644 --- a/NEWS +++ b/NEWS @@ -140,6 +140,8 @@ Changes since version 7.0: - Provide cached byte-wise read/write API #1106 - AVR109: support for prodsig read and usersig read/write #1108 - Add missing AVR variants the original JTAG ICE supports #1109 + - Improve help message in terminal and provide new command pgerase #1113 + - Fix pointer truncation for Windows x64 #1119 * Internals: diff --git a/src/term.c b/src/term.c index c0fe33db..8edbf419 100644 --- a/src/term.c +++ b/src/term.c @@ -1084,7 +1084,7 @@ static int cmd_quell(PROGRAMMER *pgm, AVRPART *p, int argc, char *argv[]) { return 0; } -static int tokenize(char * s, char ***argv) { +static int tokenize(char *s, char ***argv) { int i, n, l, nargs; int len, slen; char *buf;