aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBernd Schubert <bernd@bsbernd.com>2024-12-28 13:48:51 +0100
committerBernd Schubert <bernd@bsbernd.com>2024-12-30 23:04:11 +0100
commit20b2edf61db70cff874e41c1ba750a560737331b (patch)
treea003422d08ff0d8de063f7169ac532063cb025a9
parentb646fa9195ea15efa9303dbe0b39cb542a2cc796 (diff)
downloadlibfuse-20b2edf61db70cff874e41c1ba750a560737331b.tar.gz
Use uint32_t for libfuse_version
Should be used internally only, but is still in a common file - we better use arch independent values. Signed-off-by: Bernd Schubert <bernd@bsbernd.com>
-rw-r--r--include/fuse_common.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/fuse_common.h b/include/fuse_common.h
index 1999eaa..2c866c4 100644
--- a/include/fuse_common.h
+++ b/include/fuse_common.h
@@ -934,10 +934,10 @@ struct fuse_bufvec {
*/
struct libfuse_version
{
- int major;
- int minor;
- int hotfix;
- int padding;
+ uint32_t major;
+ uint32_t minor;
+ uint32_t hotfix;
+ uint32_t padding;
};
/* Initialize bufvec with a single buffer of given size */