1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-29 10:29:30 +00:00

Fixed gcc compiler warning (#867)

* Changed spelling FALLTHRU -> FALLTHROUGH
This commit is contained in:
Olli Savia 2019-03-30 22:09:16 +02:00 committed by greg-king5
parent 60e40c854c
commit f95481fabf

View File

@ -824,7 +824,7 @@ static void ReadStringConst (int StringTerm)
break;
}
}
/* otherwise, fall through */
/* FALLTHROUGH */
default:
Error ("Unsupported escape sequence in string constant");
break;