Merge "Remove the assumption of target chunk size in imgdiff"
diff --git a/roots.cpp b/roots.cpp
index e2d5d65..9ff5186 100644
--- a/roots.cpp
+++ b/roots.cpp
@@ -189,7 +189,7 @@
   argv.push_back(nullptr);
 
   pid_t child;
-  if ((child = vfork()) == 0) {
+  if ((child = fork()) == 0) {
     execv(argv[0], argv.data());
     _exit(EXIT_FAILURE);
   }