Changeset 60:b87f8bb9944c in xplra for test/basicctest.c


Ignore:
Timestamp:
04/04/13 15:56:27 (11 years ago)
Author:
István Váradi <ivaradi@…>
Branch:
default
hg-Phase:
(<MercurialRepository 3 'hg:/home/ivaradi/xplane/hg/xplra' '/'>, 'public')
Message:

Removed %zu and %zd patterns, as it was not handled by the MingW compiler

File:
1 edited

Legend:

Unmodified
Added
Removed
  • test/basicctest.c

    r55 r60  
    157157                                  "sim/aircraft/view/acf_descrip");
    158158    if (length<0) goto error;
    159     printf("Got %zu bytes, as a string: '%s'\n\n", length, result);
     159    printf("Got %lu bytes, as a string: '%s'\n\n", (unsigned long)length, result);
    160160
    161161    printf("Querying the aircraft's description as a dynamically created array with an offset of 3...\n");
     
    164164                                       "sim/aircraft/view/acf_descrip");
    165165    if (result1==0) goto error;
    166     printf("Got %zu bytes, as a string: '%s'\n\n", length1, result1);
     166    printf("Got %lu bytes, as a string: '%s'\n\n", (unsigned long)length1, result1);
    167167
    168168    printf("Querying the aircraft's engine types as an array of a fixed size...\n");
     
    171171
    172172    if (length<0) goto error;
    173     printf("Got %zd values:", length);
     173    printf("Got %ld values:", (long)length);
    174174    for(i = 0; i<length; ++i) {
    175175        if (i>0) printf(",");
     
    182182    result4 = xplra_get_int_array_new(&length1, 0, connectionID,
    183183                                      "sim/aircraft/prop/acf_en_type");
    184     printf("Got %zu values:", length1);
     184    printf("Got %lu values:", (unsigned long)length1);
    185185    for(j = 0; j<length1; ++j) {
    186186        if (j>0) printf(",");
     
    193193                                   0, connectionID,
    194194                                   "sim/aircraft/prop/acf_prop_dir");
    195     printf("Got %zd values:", length);
     195    printf("Got %ld values:", (long)length);
    196196    for(i = 0; i<length; ++i) {
    197197        if (i>0) printf(",");
     
    204204    result6 = xplra_get_float_array_new(&length1, 0, connectionID,
    205205                                        "sim/aircraft/prop/acf_prop_dir");
    206     printf("Got %zu values:", length1);
     206    printf("Got %lu values:", (unsigned long)length1);
    207207    for(j = 0; j<length1; ++j) {
    208208        if (j>0) printf(",");
Note: See TracChangeset for help on using the changeset viewer.