Style fixes.

This commit is contained in:
Alex Smith 2012-07-05 09:10:50 +01:00
parent d687d8ac70
commit 78d482e3b8
2 changed files with 2 additions and 3 deletions

View File

@ -645,7 +645,7 @@ typedef enum cpu_types {
#define B_CPU_x86_VENDOR_MASK 0xff00
#if defined(__INTEL__) || defined(__x86_64)
#if defined(__INTEL__) || defined(__x86_64__)
typedef union {
struct {
uint32 max_eax;

View File

@ -224,9 +224,8 @@ MappedPhysicalPageMapper::MemcpyToPhysical(phys_addr_t _to, const void* from,
if (user)
return user_memcpy(to, from, length);
else
memcpy(to, from, length);
memcpy(to, from, length);
return B_OK;
}