From: Simon Ruderich Date: Mon, 10 Jun 2019 20:27:48 +0000 (+0200) Subject: nss: file.h: re-order struct file members X-Git-Tag: 0.1~75 X-Git-Url: https://ruderich.org/simon/gitweb/?p=nsscash%2Fnsscash.git;a=commitdiff_plain;h=d228d6e6197aa1ea7ca40b19bfeb8453d6d41ee3 nss: file.h: re-order struct file members --- diff --git a/nss/file.h b/nss/file.h index 539d219..9560bc3 100644 --- a/nss/file.h +++ b/nss/file.h @@ -54,9 +54,9 @@ struct header { struct file { int fd; size_t size; - uint64_t next_index; // used by getpwent (pw.c) const struct header *header; + uint64_t next_index; // used by getpwent (pw.c) }; bool map_file(const char *path, struct file *f) __attribute__((visibility("hidden")));