aboutsummaryrefslogtreecommitdiff
path: root/libs/bsatk/include
diff options
context:
space:
mode:
authorSulfurNitride <SulfurNitride@users.noreply.github.com>2026-03-08 01:25:22 -0600
committerSulfurNitride <SulfurNitride@users.noreply.github.com>2026-03-08 01:25:22 -0600
commit2f3efb9100f51833f12f244e993155b85fa59621 (patch)
tree39f5e71dd3d3e2da3d97b9b5b58defc8dd55680e /libs/bsatk/include
parentf055928b771df2f0dec8eb2757c2fb065c696855 (diff)
Remove FUSE passthrough (CAP_SYS_ADMIN incompatible with AppImage), remove bsplugins, fix bsatk types
- Remove FUSE passthrough code: requesting FUSE_CAP_PASSTHROUGH without CAP_SYS_ADMIN caused session cleanup crash on shutdown - Remove bsplugins library (unneeded port) - Fix bsatk: use uint32_t instead of unsigned long for BSAULong (LP64 compat) Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Diffstat (limited to 'libs/bsatk/include')
-rw-r--r--libs/bsatk/include/bsatk/bsatypes.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/bsatk/include/bsatk/bsatypes.h b/libs/bsatk/include/bsatk/bsatypes.h
index 27dbdf5..aef2508 100644
--- a/libs/bsatk/include/bsatk/bsatypes.h
+++ b/libs/bsatk/include/bsatk/bsatypes.h
@@ -45,7 +45,7 @@ typedef unsigned long long BSAHash;
typedef unsigned char BSAUChar;
typedef unsigned short BSAUShort;
typedef unsigned int BSAUInt;
-typedef unsigned long BSAULong;
+typedef uint32_t BSAULong;
typedef unsigned long long BSAHash;
#endif // WIN32