Remove trailing white space with:
for f in *.{h,c}; do sed -i .sed 's/[[:blank:]]*$//' $f; done
(Thanks to Nicolás Wolovick)
This commit is contained in:
parent
6de6a3c952
commit
7894fcd217
32 changed files with 116 additions and 116 deletions
4
mmu.h
4
mmu.h
|
|
@ -1,4 +1,4 @@
|
|||
// This file contains definitions for the
|
||||
// This file contains definitions for the
|
||||
// x86 memory management unit (MMU).
|
||||
|
||||
// Eflags register
|
||||
|
|
@ -110,7 +110,7 @@ struct segdesc {
|
|||
// | Page Directory | Page Table | Offset within Page |
|
||||
// | Index | Index | |
|
||||
// +----------------+----------------+---------------------+
|
||||
// \--- PDX(va) --/ \--- PTX(va) --/
|
||||
// \--- PDX(va) --/ \--- PTX(va) --/
|
||||
|
||||
// page directory index
|
||||
#define PDX(va) (((uint)(va) >> PDXSHIFT) & 0x3FF)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue