Chameleon

Chameleon Commit Details

Date:2011-06-13 10:43:43 (12 years 10 months ago)
Author:Kabyl
Commit:1005
Parents: 1004
Message:fixed a mistake in the previous commit
Changes:
M/trunk/i386/libsaio/smbios.c

File differences

trunk/i386/libsaio/smbios.c
495495
496496
497497
498
498
499499
500500
501501
502
502
503503
504504
505505
value->byte = (uint8_t)val;
break;
case kSMBWord:
value->byte = (uint16_t)val;
value->word = (uint16_t)val;
break;
case kSMBDWord:
default:
value->byte = (uint32_t)val;
value->dword = (uint32_t)val;
break;
}
return true;

Archive Download the corresponding diff file

Revision: 1005