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/ED4_cursor.cxx

    r6353 r6357  
    599599void ED4_finish_and_show_notFoundMessage() { 
    600600    if (not_found_counter != 0) { 
    601         GBS_strcat(not_found_message, GBS_global_string("(skipped display of %i more species)\n", not_found_counter-MAX_SHOWN_MISSING_SPECIES)); 
     601        GBS_strcat(not_found_message, GBS_global_string("(skipped display of %zu more species)\n", not_found_counter-MAX_SHOWN_MISSING_SPECIES)); 
    602602        char *out_message = GBS_strclose(not_found_message); 
    603603        aw_message(out_message); 
    604         aw_message(GBS_global_string("Couldn't load %i species:", not_found_counter)); 
     604        aw_message(GBS_global_string("Couldn't load %zu species:", not_found_counter)); 
    605605        free(out_message); 
    606606    }