Changeset e22c841
- Timestamp:
 - Aug 31, 2021, 1:30:43 PM (4 years ago)
 - Branches:
 - ADT, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, master, pthread-emulation, qualifiedEnum
 - Children:
 - 480389d2
 - Parents:
 - 32913bc
 - File:
 - 
      
- 1 edited
 
- 
          
  libcfa/src/parseconfig.cfa (modified) (1 diff)
 
 
Legend:
- Unmodified
 - Added
 - Removed
 
- 
      
libcfa/src/parseconfig.cfa
r32913bc re22c841 18 18 19 19 void msg( Missing_Config_Entries * ex ) { 20 serr | "The config file is missing " | ex->num_missing | " entries."; 20 serr | nlOff; 21 serr | "The config file is missing " | ex->num_missing; 22 serr | nlOn; 23 if ( ex->num_missing == 1 ) { 24 serr | " entry."; 25 } else { 26 serr | " entries."; 27 } 21 28 } 22 29  
  Note:
 See   TracChangeset
 for help on using the changeset viewer.