X-Git-Url: https://review.openocd.org/gitweb?a=blobdiff_plain;f=src%2Ftarget%2Fnds32_cmd.c;h=500651dbc835fe6cb2a4b28e9383cfd6414f8467;hb=57962f4d1c2db12dffa03c7357f5d7e0d8f71fb8;hp=ffd606129e94f196f7f4c06b65648fe6953baec5;hpb=7c957b601f7aeabc537519597057e63f2ae60320;p=openocd.git diff --git a/src/target/nds32_cmd.c b/src/target/nds32_cmd.c index ffd606129e..500651dbc8 100644 --- a/src/target/nds32_cmd.c +++ b/src/target/nds32_cmd.c @@ -13,9 +13,7 @@ * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * - * along with this program; if not, write to the * - * Free Software Foundation, Inc., * - * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. * + * along with this program. If not, see . * ***************************************************************************/ #ifdef HAVE_CONFIG_H @@ -818,7 +816,7 @@ static int jim_nds32_bulk_read(Jim_Interp *interp, int argc, Jim_Obj * const *ar uint32_t *data = malloc(count * sizeof(uint32_t)); int result; result = target_read_buffer(target, address, count * 4, (uint8_t *)data); - char data_str[11]; + char data_str[12]; jim_wide i; Jim_SetResult(interp, Jim_NewEmptyStringObj(interp));