Ignore:
Timestamp:
09/10/23 01:51:57 (8 months ago)
Author:
Maciej Komosinski
Message:

Added explicit type casts (size_t vs. int etc.)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • cpp/frams/model/autoname.cpp

    r1130 r1280  
    5959static void przeplatanka(char *out, char *in1, char *in2)
    6060{
    61         int d1 = strlen(in1), d2 = strlen(in2);
     61        int d1 = (int)strlen(in1), d2 = (int)strlen(in2);
    6262        int p1 = 0, p2 = 0;
    6363        int pp = d1 + d2;
Note: See TracChangeset for help on using the changeset viewer.