diff options
author | Joanne Koong <joannelkoong@gmail.com> | 2024-10-07 13:37:20 -0700 |
---|---|---|
committer | Bernd Schubert <bernd.schubert@fastmail.fm> | 2024-10-11 13:15:38 +0200 |
commit | 535808c4d93e4637577aa17bf8413a41920dd2d8 (patch) | |
tree | 823ce1f443beeb98ec5a1ae997375b8d70161014 /lib/meson.build | |
parent | 55eb214db9fa6c16f0af6a4e1a70b56b959aee3e (diff) | |
download | libfuse-535808c4d93e4637577aa17bf8413a41920dd2d8.tar.gz |
Add libfuse util strtol wrapper
Add a wrapper around strtol for more rigorous error checking
and convert uses of atoi and strtol to use this instead.
Diffstat (limited to 'lib/meson.build')
-rw-r--r-- | lib/meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/meson.build b/lib/meson.build index 1822ce0..34dd607 100644 --- a/lib/meson.build +++ b/lib/meson.build @@ -2,7 +2,7 @@ libfuse_sources = ['fuse.c', 'fuse_i.h', 'fuse_loop.c', 'fuse_loop_mt.c', 'fuse_lowlevel.c', 'fuse_misc.h', 'fuse_opt.c', 'fuse_signals.c', 'buffer.c', 'cuse_lowlevel.c', 'helper.c', 'modules/subdir.c', 'mount_util.c', - 'fuse_log.c', 'compat.c' ] + 'fuse_log.c', 'compat.c', 'util.c', 'util.h' ] if host_machine.system().startswith('linux') libfuse_sources += [ 'mount.c' ] |