diff options
Diffstat (limited to 'apt-inst/deb')
-rw-r--r-- | apt-inst/deb/dpkgdb.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apt-inst/deb/dpkgdb.cc b/apt-inst/deb/dpkgdb.cc index 50b361948..7da5a26aa 100644 --- a/apt-inst/deb/dpkgdb.cc +++ b/apt-inst/deb/dpkgdb.cc @@ -61,7 +61,7 @@ static bool EraseDir(const char *Dir) return _error->Errno("rmdir",_("Failed to remove %s"),Dir); // Purge it using rm - int Pid = ExecFork(); + pid_t Pid = ExecFork(); // Spawn the subprocess if (Pid == 0) |