View | Details | Raw Unified | Return to bug 213657
Collapse All | Expand All

(-)files/patch-563bac8 (working copy) (+26 lines)
Line 0 Link Here
1
diff --git a/src/mem/align.h b/src/mem/align.h
2
index 4c6e183..03a4999 100644
3
--- src/mem/align.h
4
+++ src/mem/align.h
5
@@ -30,7 +30,7 @@ union max_align
6
       void (*q)(void);
7
 };
8
 
9
-typedef union max_align max_align_t;
10
+typedef union max_align h_max_align_t;
11
 
12
 #endif
13
 
14
diff --git a/src/mem/halloc.c b/src/mem/halloc.c
15
index b097d1f..40d0c09 100644
16
--- src/mem/halloc.c
17
+++ src/mem/halloc.c
18
@@ -34,7 +34,7 @@ typedef struct hblock
19
 #endif
20
       hlist_item_t  siblings; /* 2 pointers */
21
       hlist_head_t  children; /* 1 pointer  */
22
-      max_align_t   data[1];  /* not allocated, see below */
23
+      h_max_align_t   data[1];  /* not allocated, see below */
24
 
25
 } hblock_t;
26
 

Return to bug 213657