From: Andreas Schwab Date: Sun, 23 Feb 2020 19:46:56 +0000 (+0100) Subject: aarch64: Fix bits/utmpx.h for GCC 8 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6162538850f01c682ade44cd32f4384632fc265e;p=thirdparty%2Fglibc.git aarch64: Fix bits/utmpx.h for GCC 8 --- 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. */