[Reproducible-commits] [disorderfs] 02/06: Use nullptr instead of NULL

Andrew Ayer agwa at andrewayer.name
Fri Jun 10 04:01:28 UTC 2016


This is an automated email from the git hooks/post-receive script.

agwa-guest pushed a commit to branch debian
in repository disorderfs.

commit 0a93706e09f64a47718aa4ea3c77d6808a415219
Author: Andrew Ayer <agwa at andrewayer.name>
Date:   Fri Apr 15 10:15:35 2016 -0700

    Use nullptr instead of NULL
---
 disorderfs.cpp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/disorderfs.cpp b/disorderfs.cpp
index 1e02aac..2f2c333 100644
--- a/disorderfs.cpp
+++ b/disorderfs.cpp
@@ -218,12 +218,12 @@ namespace {
 			std::clog << "    --share-locks=yes|no   share locks with underlying filesystem (BUGGY; default: no)" << std::endl;
 			std::clog << std::endl;
 			fuse_opt_add_arg(outargs, "-ho");
-			fuse_main(outargs->argc, outargs->argv, &disorderfs_fuse_operations, NULL);
+			fuse_main(outargs->argc, outargs->argv, &disorderfs_fuse_operations, nullptr);
 			std::exit(0);
 		} else if (key == KEY_VERSION) {
 			std::cout << "disorderfs version: " DISORDERFS_VERSION << std::endl;
 			fuse_opt_add_arg(outargs, "--version");
-			fuse_main(outargs->argc, outargs->argv, &disorderfs_fuse_operations, NULL);
+			fuse_main(outargs->argc, outargs->argv, &disorderfs_fuse_operations, nullptr);
 			std::exit(0);
 		}
 		return 1;

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/reproducible/disorderfs.git



More information about the Reproducible-commits mailing list