mirror of
https://github.com/cirosantilli/linux-kernel-module-cheat.git
synced 2026-01-25 03:01:36 +01:00
kernel module: format, use tab to indent.
This commit is contained in:
committed by
Ciro Santilli 包子露宪 六四事件 法轮功
parent
9f6ddbc436
commit
3b0a343647
@@ -8,8 +8,8 @@
|
||||
static int myinit(void)
|
||||
{
|
||||
void *dst, *src;
|
||||
dst = kmalloc(0x10, GFP_KERNEL);
|
||||
src = kmalloc(0x1000000, GFP_KERNEL);
|
||||
dst = kmalloc(0x10, GFP_KERNEL);
|
||||
src = kmalloc(0x1000000, GFP_KERNEL);
|
||||
memcpy(dst, src, 0x1000000);
|
||||
return 0;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user