Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/usr.sbin/acpitools/aml Drop pointless packed attributes.



details:   https://anonhg.NetBSD.org/src/rev/61104baef821
branches:  trunk
changeset: 348131:61104baef821
user:      joerg <joerg%NetBSD.org@localhost>
date:      Tue Oct 04 22:22:16 2016 +0000

description:
Drop pointless packed attributes.

diffstat:

 usr.sbin/acpitools/aml/aml_memman.h |  8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diffs (36 lines):

diff -r 5d37c658dae5 -r 61104baef821 usr.sbin/acpitools/aml/aml_memman.h
--- a/usr.sbin/acpitools/aml/aml_memman.h       Tue Oct 04 21:40:31 2016 +0000
+++ b/usr.sbin/acpitools/aml/aml_memman.h       Tue Oct 04 22:22:16 2016 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: aml_memman.h,v 1.2 2009/01/18 09:46:59 lukem Exp $     */
+/*     $NetBSD: aml_memman.h,v 1.3 2016/10/04 22:22:16 joerg Exp $     */
 
 /*-
  * Copyright (c) 1999, 2000 Mitsuru IWASAKI <iwasaki%FreeBSD.org@localhost>
@@ -48,7 +48,7 @@
        unsigned int    available;      /* number of available chunks */
        unsigned int    allocated_mem;  /* block + misc (in bytes) */
 
-}__attribute__((packed));
+};
 
 LIST_HEAD(memman_block_list, memman_block);
 
@@ -57,7 +57,7 @@
        LIST_ENTRY(memman_node) links;
        void    *node;
        struct  memman_block *memblock;
-}__attribute__((packed));
+};
 
 LIST_HEAD(memman_node_list, memman_node);
 
@@ -88,7 +88,7 @@
        LIST_ENTRY(memman_flexmem_info) links;
        void    *addr;
        size_t  mem_size;
-}__attribute__((packed));
+};
 
 LIST_HEAD(memman_flexmem_info_list, memman_flexmem_info);
 



Home | Main Index | Thread Index | Old Index