Chameleon

Chameleon Commit Details

Date:2015-05-10 14:37:52 (8 years 10 months ago)
Author:ErmaC
Commit:2673
Parents: 2672
Message:Casting value for ATi.
Changes:
M/trunk/i386/libsaio/ati.c

File differences

trunk/i386/libsaio/ati.c
20342034
20352035
20362036
2037
2037
20382038
20392039
20402040
......
20582058
20592059
20602060
2061
2061
20622062
20632063
20642064
{
if (devprop_list[i].get_value(val))
{
devprop_list[i].name[1] = 0x30 + pnum; // convert to ascii
devprop_list[i].name[1] = (uint8_t)(0x30 + pnum); // convert to ascii
devprop_add_value(card->device, devprop_list[i].name, val->data, val->size);
free_val(val);
}
{
if (devprop_list[i].default_val.type != kNul)
{
devprop_list[i].name[1] = 0x30 + pnum; // convert to ascii
devprop_list[i].name[1] = (uint8_t)(0x30 + pnum); // convert to ascii
devprop_add_value(card->device, devprop_list[i].name,
devprop_list[i].default_val.type == kCst ?
(uint8_t *)&(devprop_list[i].default_val.data) : devprop_list[i].default_val.data,

Archive Download the corresponding diff file

Revision: 2673