]> git.saurik.com Git - apt.git/blobdiff - apt-inst/contrib/extracttar.cc
warning: cast from type A to type B casts away qualifiers [-Wcast-qual]
[apt.git] / apt-inst / contrib / extracttar.cc
index 41301d1a684c54b66d1e00e52abd20a4eaba595d..41c509809277efa8031d39d0b5759ca4ac1ee140 100644 (file)
@@ -120,7 +120,7 @@ bool ExtractTar::StartGzip()
    int Pipes[2];
    if (pipe(Pipes) != 0)
       return _error->Errno("pipe",_("Failed to create pipes"));
-   
+
    // Fork off the process
    GZPid = ExecFork();
 
@@ -136,9 +136,9 @@ bool ExtractTar::StartGzip()
       dup2(Fd,STDERR_FILENO);
       close(Fd);
       SetCloseExec(STDOUT_FILENO,false);
-      SetCloseExec(STDIN_FILENO,false);      
+      SetCloseExec(STDIN_FILENO,false);
       SetCloseExec(STDERR_FILENO,false);
-      
+
       const char *Args[3];
       string confvar = string("dir::bin::") + DecompressProg;
       string argv0 = _config->Find(confvar.c_str(),DecompressProg.c_str());