diff options
author | randomdan <randomdan@localhost> | 2012-05-31 00:06:45 +0000 |
---|---|---|
committer | randomdan <randomdan@localhost> | 2012-05-31 00:06:45 +0000 |
commit | 3e7774385f0d709c1b556764439bf912802eb2e3 (patch) | |
tree | 6741aeee0920356eca809ab4603a51cf86817dde | |
parent | Add precompiled headers (diff) | |
download | netfs-3e7774385f0d709c1b556764439bf912802eb2e3.tar.bz2 netfs-3e7774385f0d709c1b556764439bf912802eb2e3.tar.xz netfs-3e7774385f0d709c1b556764439bf912802eb2e3.zip |
Fix type conversion warnings
-rw-r--r-- | netfs/fuseapp.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/netfs/fuseapp.cpp b/netfs/fuseapp.cpp index 628f4c2..1dbe5bf 100644 --- a/netfs/fuseapp.cpp +++ b/netfs/fuseapp.cpp @@ -307,8 +307,8 @@ FuseAppBase::run(int & argc, char** & argv, FuseAppBase * fa) fuseCall<const char *, size_t, uint64_t *, &FuseAppBase::bmap>, 0, 0, - NULL, - NULL + 0, + 0 }; struct fuse_args args = FUSE_ARGS_INIT(argc, argv); if (fuse_opt_parse(&args, fuseApp, fuse_opts, |