On Thursday 05 February 2015 06:15:37 Chengyi Zhao wrote:
> Hi, 
> A middleware software need to save the value of 'unsigned long' type to
> vconf/vconf-buxton, however, this project does not support the 'unsigned
> long' type.
> vconf-buxton.c: * union for storing values  */union keyvalue{ 
> int i;                        /* storage of integers */  int b;               
>         /* storage 
of booleans */ 
> double d;                     /* storage of doubles */  char *s;              
>         /* 
storage of strings */};
> Please add support for the 'unsigned long' type.

long changes size between 32- and 64-bit types. The correct thing is to add 
support for 64-bit (unsigned) long long.

-- 
Thiago Macieira - thiago.macieira (AT) intel.com
  Software Architect - Intel Open Source Technology Center

_______________________________________________
Dev mailing list
[email protected]
https://lists.tizen.org/listinfo/dev

Reply via email to