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_server.c

    r14936 r15282  
    110110        {
    111111                sprintf(str[i],"%s/Service_%03d",argv[1],i);
    112                 dis_add_service( str[i], "C", str[i], strlen(str[i])+1,
     112                dis_add_service( str[i], "C", str[i], (int)strlen(str[i])+1,
    113113                        (void *)0, 0 );
    114114        }
     
    195195                                sprintf(more_str[curr_more_index],"%s/More_Service_%03d",argv[1],curr_more_index);
    196196                                more_ids[curr_more_index] = dis_add_service( more_str[curr_more_index], "C",
    197                                         more_str[curr_more_index], strlen(more_str[curr_more_index])+1,
     197                                        more_str[curr_more_index], (int)strlen(more_str[curr_more_index])+1,
    198198                                        (void *)0, 0 );
    199199printf("Adding service %s\n",more_str[curr_more_index]);
Note: See TracChangeset for help on using the changeset viewer.