1
0
mirror of https://github.com/simh/simh.git synced 2026-01-25 19:56:25 +00:00

Compiler warning cleanup

This commit is contained in:
Mark Pizzolato
2013-06-01 23:04:45 -07:00
parent e5ee32d411
commit 486ef58595
4 changed files with 11 additions and 6 deletions

View File

@@ -704,13 +704,14 @@ for (i=(was_stepping ? sim_rem_step_line : 0);
strcpy (cbuf, sim_rem_buf[i]);
sim_rem_buf_ptr[i] = 0;
sim_rem_buf[i][sim_rem_buf_ptr[i]] = '\0';
if (cbuf[0] == '\0')
if (cbuf[0] == '\0') {
if (sim_rem_single_mode[i]) {
sim_rem_single_mode[i] = FALSE;
break;
}
else
continue;
}
sim_sub_args (cbuf, sizeof(cbuf), argv);
cptr = cbuf;
cptr = get_glyph (cptr, gbuf, 0); /* get command glyph */