Changeset 5900 in vbox for trunk/src/VBox/Additions/linux/module
- Timestamp:
- Dec 2, 2007 6:40:53 AM (17 years ago)
- Location:
- trunk/src/VBox/Additions/linux/module
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/linux/module/hgcmcall.c
r5893 r5900 292 292 int rc; 293 293 294 AssertCompile r((_IOC_SIZE(IOCTL_VBOXGUEST_HGCM_CALL) == sizeof(VBoxGuestHGCMCallInfo)));294 AssertCompile((_IOC_SIZE(IOCTL_VBOXGUEST_HGCM_CALL) == sizeof(VBoxGuestHGCMCallInfo))); 295 295 /* Get the call header from user space to see how many call parameters there are. */ 296 296 if (copy_from_user(&callHeader, (void*)arg, sizeof(callHeader))) -
trunk/src/VBox/Additions/linux/module/vboxmod.c
r5893 r5900 373 373 int rc; 374 374 375 AssertCompile r((sizeof(VMMDevRequestHeader) == _IOC_SIZE(IOCTL_VBOXGUEST_VMMREQUEST)));375 AssertCompile((sizeof(VMMDevRequestHeader) == _IOC_SIZE(IOCTL_VBOXGUEST_VMMREQUEST))); 376 376 if (copy_from_user(&reqHeader, (void*)arg, _IOC_SIZE(cmd))) 377 377 {
Note:
See TracChangeset
for help on using the changeset viewer.