From 8b71603f2363db42540dd1b8704a8c229d95ed13 Mon Sep 17 00:00:00 2001 From: Peter Bortas Date: Mon, 27 Mar 2017 23:53:04 +0200 Subject: Fix CID 157540: "Missing comma" resulting in unintentional string concatenation --- src/tools/imgtool/filtbas.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tools/imgtool/filtbas.cpp b/src/tools/imgtool/filtbas.cpp index eac4b9d5173..bafd3222dce 100644 --- a/src/tools/imgtool/filtbas.cpp +++ b/src/tools/imgtool/filtbas.cpp @@ -652,7 +652,7 @@ static const char *const dragonbas_functions[] = "TIMER", /* 0xff9e */ "PPOINT", /* 0xff9f */ "STRING$", /* 0xffa0 */ - "USR" /* 0xffa1 */ + "USR", /* 0xffa1 */ "CVN", /* 0xffa2 */ "FREE", /* 0xffa3 */ "LOC", /* 0xffa4 */ -- cgit v1.2.3 From d9c468b4d283174b4f92cd641b8a8ae664ecd2b6 Mon Sep 17 00:00:00 2001 From: Peter Bortas Date: Mon, 27 Mar 2017 23:56:09 +0200 Subject: Fix CID 157541: "Missing comma" resulting in unintentional string concatenation --- src/devices/cpu/sm510/sm510d.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/devices/cpu/sm510/sm510d.cpp b/src/devices/cpu/sm510/sm510d.cpp index 030b2157f63..382daa0d9d3 100644 --- a/src/devices/cpu/sm510/sm510d.cpp +++ b/src/devices/cpu/sm510/sm510d.cpp @@ -59,7 +59,7 @@ static const char *const s_mnemonics[] = "ADDC", "PDTW", "TW", "DTW", "ATS", "EXKSA", "EXKFA", "RMF", "SMF", "COMCN", - "TA", "TM", "TG" + "TA", "TM", "TG", // "LC", "LM", "LE", "LAF", "LAS", "LDF", "BS0", "BS1", "XL", "XM", "XI", "XEI", "XD", "XED", "XE", "BM0", "BM1", "SM1", -- cgit v1.2.3