aboutsummaryrefslogtreecommitdiffstats
path: root/src/ralloc.c
diff options
context:
space:
mode:
authorJuanma Barranquero2011-09-09 03:06:52 +0200
committerJuanma Barranquero2011-09-09 03:06:52 +0200
commit5e617bc2b62189768814fafd1a875e89a094d3ef (patch)
treed96d22e012035d044557abf4de0b8e30b03d61b7 /src/ralloc.c
parent9b1c252e294bed3aef0d2f2fc5d1fa9f72df9ee8 (diff)
downloademacs-5e617bc2b62189768814fafd1a875e89a094d3ef.tar.gz
emacs-5e617bc2b62189768814fafd1a875e89a094d3ef.zip
Whitespace changes.
Diffstat (limited to 'src/ralloc.c')
-rw-r--r--src/ralloc.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/ralloc.c b/src/ralloc.c
index 64a47416202..50d322523c1 100644
--- a/src/ralloc.c
+++ b/src/ralloc.c
@@ -100,7 +100,7 @@ static int extra_bytes;
100 & ~(page_size - 1)) 100 & ~(page_size - 1))
101#define ROUND_TO_PAGE(addr) (addr & (~(page_size - 1))) 101#define ROUND_TO_PAGE(addr) (addr & (~(page_size - 1)))
102 102
103#define MEM_ALIGN sizeof(double) 103#define MEM_ALIGN sizeof (double)
104#define MEM_ROUNDUP(addr) (((unsigned long int)(addr) + MEM_ALIGN - 1) \ 104#define MEM_ROUNDUP(addr) (((unsigned long int)(addr) + MEM_ALIGN - 1) \
105 & ~(MEM_ALIGN - 1)) 105 & ~(MEM_ALIGN - 1))
106 106
@@ -468,7 +468,7 @@ relocate_blocs (bloc_ptr bloc, heap_ptr heap, POINTER address)
468 468
469 /* No need to ever call this if arena is frozen, bug somewhere! */ 469 /* No need to ever call this if arena is frozen, bug somewhere! */
470 if (r_alloc_freeze_level) 470 if (r_alloc_freeze_level)
471 abort(); 471 abort ();
472 472
473 while (b) 473 while (b)
474 { 474 {
@@ -592,7 +592,7 @@ resize_bloc (bloc_ptr bloc, SIZE size)
592 592
593 /* No need to ever call this if arena is frozen, bug somewhere! */ 593 /* No need to ever call this if arena is frozen, bug somewhere! */
594 if (r_alloc_freeze_level) 594 if (r_alloc_freeze_level)
595 abort(); 595 abort ();
596 596
597 if (bloc == NIL_BLOC || size == bloc->size) 597 if (bloc == NIL_BLOC || size == bloc->size)
598 return 1; 598 return 1;