Ignore:
Timestamp:
Feb 24, 2014 9:02:44 AM (10 years ago)
Author:
nanang
Message:

Re #1680: Fixed compile warnings on VS2005 for x64/win64 config.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjlib-util/src/pjlib-util-test/json_test.c

    r4704 r4761  
    6464    pool = pj_pool_create(mem, "json", 1000, 1000, NULL); 
    6565 
    66     size = strlen(json_doc1); 
     66    size = (unsigned)strlen(json_doc1); 
    6767    elem = pj_json_parse(pool, json_doc1, &size, &err); 
    6868    if (!elem) { 
     
    7171    } 
    7272 
    73     size = strlen(json_doc1) * 2; 
     73    size = (unsigned)strlen(json_doc1) * 2; 
    7474    out_buf = pj_pool_alloc(pool, size); 
    7575 
Note: See TracChangeset for help on using the changeset viewer.