native: Added dummy member to struct _thread_arch

Added dummy member to struct _thread_arch to suppress clang compiler
warning.

Signed-off-by: Jan Van Winkel <jan.van_winkel@dxplore.eu>
This commit is contained in:
Jan Van Winkel 2019-08-21 21:15:23 +02:00 committed by Ioannis Glaropoulos
commit d157527ec1

View file

@ -41,6 +41,7 @@ struct _callee_saved {
struct _thread_arch {
/* nothing for now */
int dummy;
};
typedef struct _thread_arch _thread_arch_t;