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;