diff --git a/linux-user/syscall.c b/linux-user/syscall.c index 99be4f2f3e..36ca921a7e 100644 --- a/linux-user/syscall.c +++ b/linux-user/syscall.c @@ -789,6 +789,9 @@ static uint16_t host_to_target_errno_table[ERRNO_TABLE_SIZE] = { #ifdef ENOTRECOVERABLE [ENOTRECOVERABLE] = TARGET_ENOTRECOVERABLE, #endif +#ifdef ENOMSG + [ENOMSG] = TARGET_ENOMSG, +#endif }; static inline int host_to_target_errno(int err)