fixed a warning
Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@715
This commit is contained in:
parent
e304c3262b
commit
b7b02ce8a4
1 changed files with 1 additions and 1 deletions
|
@ -61,7 +61,7 @@ void DOS_Shell::InputCommand(char * line) {
|
|||
case 0x3d: /* F3 */
|
||||
if (strlen(old.buffer)>str_len) {
|
||||
reader=&old.buffer[str_len];
|
||||
while (c=*reader++) {
|
||||
while ((c=*reader++)) {
|
||||
line[str_index]=c;
|
||||
str_len++;
|
||||
str_index++;
|
||||
|
|
Loading…
Add table
Reference in a new issue