Apply patch: ncpfs-hg-commit-434.patch

This commit is contained in:
Mario Fetka
2026-04-28 20:56:03 +02:00
parent 90ae1620dc
commit d763fcf8d8
2 changed files with 29 additions and 1 deletions

View File

@@ -181,7 +181,10 @@ DSET_HL(void * buf, int pos, dword val)
DSET_LH(buf, pos, htonl(val));
}
static inline __attribute__((always_inline)) void
static inline void
#if __GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 2)
__attribute__((always_inline))
#endif
QSET_HL(void * buf, int pos, u_int64_t val) {
DSET_HL(buf, pos, val >> 32);
DSET_HL(buf, pos + 4, val);