mirror of
https://github.com/scylladb/scylladb.git
synced 2026-05-28 18:50:53 +00:00
It makes compiler complan about mis-ordered initialization of st_nlink vs st_mode on different arches. Current code (st_nlink before st_mode) compiled fine on x86, but fails on ARM which wants st_mode to come before st_nlink. Changing the order would, apparently, break x86 build with similar message. Signed-off-by: Pavel Emelyanov <xemul@scylladb.com> Closes #13499