mirror of
https://gcc.gnu.org/git/gcc.git
synced 2024-11-24 19:33:59 +08:00
Fixed second typo.
From-SVN: r134686
This commit is contained in:
parent
d4a1808cf1
commit
7f98ca2249
@ -259,7 +259,7 @@ make_raw_shell_str( char* pz_d, tCC* pz_s, size_t smax )
|
||||
*(pz_d++) = '\'';
|
||||
|
||||
for (;;) {
|
||||
if (((size_t) (pz_d - pz_d_start) >= smax)
|
||||
if ((size_t) (pz_d - pz_d_start) >= smax)
|
||||
return (char*)NULL;
|
||||
switch (*(pz_d++) = *(pz_s++)) {
|
||||
case NUL:
|
||||
|
Loading…
Reference in New Issue
Block a user