From 6162538850f01c682ade44cd32f4384632fc265e Mon Sep 17 00:00:00 2001 From: Andreas Schwab Date: Sun, 23 Feb 2020 20:46:56 +0100 Subject: [PATCH] aarch64: Fix bits/utmpx.h for GCC 8 --- sysdeps/unix/sysv/linux/aarch64/bits/utmpx.h | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/sysdeps/unix/sysv/linux/aarch64/bits/utmpx.h b/sysdeps/unix/sysv/linux/aarch64/bits/utmpx.h index bffd45cb3e5..4e0d71cf380 100644 --- a/sysdeps/unix/sysv/linux/aarch64/bits/utmpx.h +++ b/sysdeps/unix/sysv/linux/aarch64/bits/utmpx.h @@ -58,10 +58,14 @@ struct utmpx { short int ut_type; /* Type of login. */ __pid_t ut_pid; /* Process ID of login process. */ - char ut_line[__UT_LINESIZE]; /* Devicename. */ - char ut_id[4]; /* Inittab ID. */ - char ut_user[__UT_NAMESIZE]; /* Username. */ - char ut_host[__UT_HOSTSIZE]; /* Hostname for remote login. */ + char ut_line[__UT_LINESIZE] + __attribute_nonstring__; /* Devicename. */ + char ut_id[4] + __attribute_nonstring__; /* Inittab ID. */ + char ut_user[__UT_NAMESIZE] + __attribute_nonstring__; /* Username. */ + char ut_host[__UT_HOSTSIZE] + __attribute_nonstring__; /* Hostname for remote login. */ struct __exit_status ut_exit; /* Exit status of a process marked as DEAD_PROCESS. */ -- 2.47.2