fixed build errors due to toolchain upgrade 35/109535/1
authorSejun Park <sejun79.park@samsung.com>
Tue, 10 Jan 2017 09:48:48 +0000 (18:48 +0900)
committerSejun Park <sejun79.park@samsung.com>
Tue, 10 Jan 2017 09:48:48 +0000 (18:48 +0900)
Change-Id: I5d4ebfd0a0be7c23ece59283e3125f6a56cbcd44

nestegg/halloc/src/align.h
nestegg/halloc/src/halloc.c
packaging/libvpx.spec

index 4c6e183..9b414e8 100644 (file)
 #ifndef _LIBP_ALIGN_H_
 #define _LIBP_ALIGN_H_
 
+typedef union _max_align hmax_align_t;
 /*
  *     a type with the most strict alignment requirements
  */
-union max_align
+union _max_align
 {
        char   c;
        short  s;
@@ -30,7 +31,5 @@ union max_align
        void (*q)(void);
 };
 
-typedef union max_align max_align_t;
-
 #endif
 
index 38fd6c1..5647f41 100644 (file)
@@ -30,7 +30,7 @@ typedef struct hblock
 #endif
        hlist_item_t  siblings; /* 2 pointers */
        hlist_head_t  children; /* 1 pointer  */
-       max_align_t   data[1];  /* not allocated, see below */
+       hmax_align_t   data[1];  /* not allocated, see below */
        
 } hblock_t;
 
index a1aa1c6..118760d 100644 (file)
@@ -1,5 +1,5 @@
 Name:           libvpx
-Version:        1.3.0
+Version:        1.3.1
 Release:        0
 License:        BSD-2.0
 Summary:        VP8 codec library