gcc9 fix Update Endiness check 39/221439/1 accepted/tizen/unified/20200102.211200 submit/tizen/20200102.093045
authormanish.r <manish.r@samsung.com>
Thu, 2 Jan 2020 09:17:48 +0000 (14:47 +0530)
committerManish Rathod <manish.r@samsung.com>
Thu, 2 Jan 2020 09:19:30 +0000 (09:19 +0000)
Change-Id: I8cb9622e547482a9b84edf063ae794a02f07f842
Signed-off-by: manish.r <manish.r@samsung.com>
src/descs_strings.h

index 033293b..11a9028 100644 (file)
@@ -13,7 +13,7 @@
  * that allows them to be used when initializing structures.
  */
 
-#if __BYTE_ORDER == __LITTLE_ENDIAN
+#if __BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__
 #define cpu_to_le16(x)  (x)
 #define cpu_to_le32(x)  (x)
 #else