- fixed prototype of read_capi_dword

This commit is contained in:
MelwareDE 2006-01-28 21:07:11 +00:00
parent f93221f0ef
commit d941fd5175
1 changed files with 1 additions and 1 deletions

View File

@ -67,7 +67,7 @@ static inline void write_capi_dword(void *m, unsigned int val)
((unsigned char *)m)[2] = (val >> 16) & 0xff;
((unsigned char *)m)[3] = (val >> 24) & 0xff;
}
static inline unsigned short read_capi_dword(void *m)
static inline unsigned int read_capi_dword(void *m)
{
unsigned int val;