Ignore:
Timestamp:
04/08/13 15:07:07 (12 years ago)
Author:
tbretz
Message:
Updated to v20r7.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/FACT++/dim/src/examples/test_client.c

    r14575 r15282  
    8383                printf("DNS node = %s\n",node);
    8484                printf("size = %d\n",*size);
    85                 memcpy(&t, buf, *size);
     85                memcpy(&t, buf, (size_t)*size);
    8686                printf("t.i = %d, t.d = %2.2f, t.s = %d, t.c = %c, t.f = %2.2f, t.str = %s\n",
    8787                        t.i,t.d,t.s,t.c,t.f,t.str);
     
    8989                tsecs = secs;
    9090                my_ctime(&tsecs, str, 128);
    91                 str[strlen(str)-1] = '\0';
     91                str[(int)strlen(str)-1] = '\0';
    9292                printf("timestamp = %s.%d\n",str,millis);
    9393
Note: See TracChangeset for help on using the changeset viewer.