Show
Ignore:
Timestamp:
19/01/10 13:50:30 (2 years ago)
Author:
westram
Message:
  • fixed type of 'not_found_counter'
  • corrected format specifiers
Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/EDIT4/EDB_root_bact.cxx

    r6353 r6357  
    7575        not_found_counter++; 
    7676        if (not_found_counter <= MAX_SHOWN_MISSING_SPECIES) { 
    77             sprintf(dummy,"%ld. %s\n", not_found_counter, str); 
     77            sprintf(dummy,"%zu. %s\n", not_found_counter, str); 
    7878            GBS_strcat(not_found_message,dummy); 
    7979        } 
     
    8888            not_found_counter++; 
    8989            if (not_found_counter <= MAX_SHOWN_MISSING_SPECIES) { 
    90                 sprintf(dummy,"%ld. %s (no data in alignment)\n", not_found_counter, str); 
     90                sprintf(dummy,"%zu. %s (no data in alignment)\n", not_found_counter, str); 
    9191                GBS_strcat(not_found_message,dummy); 
    9292            }