native: Fix trailing whitespace

This commit is contained in:
François Revol 2013-03-19 19:54:09 +01:00
parent 22bcb07c61
commit 3d33248eff
4 changed files with 10 additions and 10 deletions

View file

@ -56,9 +56,9 @@ xmem_pwrite(const void *buf, int size, unsigned long offset)
lseek(f, addr, SEEK_SET);
write(f, buf, size);
close(f);*/
/* printf("xmem_write(offset 0x%02x, buf %p, size %l);\n", offset, buf, size);*/
memcpy(&xmem[offset], buf, size);
return size;
}