File tree 1 file changed +5
-5
lines changed
1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -3435,7 +3435,7 @@ static int open_file(
3435
3435
if (! fullname ) /* Non-existent or directory */
3436
3436
return FALSE;
3437
3437
if (standard && included ( fullname )) /* Once included */
3438
- goto true ;
3438
+ goto case_true ;
3439
3439
3440
3440
if ((max_open != 0 && max_open <= include_nest )
3441
3441
/* Exceed the known limit of open files */
@@ -3462,12 +3462,12 @@ static int open_file(
3462
3462
if ((fp = fopen ( fullname , "r" )) == NULL ) {
3463
3463
file -> fp = fopen ( cur_fullname , "r" );
3464
3464
fseek ( file -> fp , file -> pos , SEEK_SET );
3465
- goto false ;
3465
+ goto case_false ;
3466
3466
}
3467
3467
if (max_open == 0 ) /* Remember the limit of the system */
3468
3468
max_open = include_nest ;
3469
3469
} else if (fp == NULL ) /* No read permission */
3470
- goto false ;
3470
+ goto case_false ;
3471
3471
/* Truncate buffer of the includer to save memory */
3472
3472
len = (int ) (file -> bptr - file -> buffer );
3473
3473
if (len ) {
@@ -3514,9 +3514,9 @@ static int open_file(
3514
3514
if (mkdep && ((mkdep & MD_SYSHEADER ) || ! infile -> sys_header ))
3515
3515
put_depend ( fullname ); /* Output dependency line */
3516
3516
3517
- true :
3517
+ case_true :
3518
3518
return TRUE;
3519
- false :
3519
+ case_false :
3520
3520
free ( fullname );
3521
3521
return FALSE;
3522
3522
}
You can’t perform that action at this time.
0 commit comments