diff options
author | Michael Vogt <mvo@debian.org> | 2015-09-30 15:24:47 +0200 |
---|---|---|
committer | Michael Vogt <mvo@debian.org> | 2015-09-30 15:24:47 +0200 |
commit | eaf21c2144fa8dc4be8581dc69cf88cb38e30ce2 (patch) | |
tree | 74dcf6f56227642347ffe6d27191d5bd77d3c304 /apt-pkg/install-progress.h | |
parent | 9a2902305b75a6bc5a288fd1b12323c77df09b8c (diff) |
Fix select timeout to be 50msec instead of 0.5msec
Closes: #799857
Diffstat (limited to 'apt-pkg/install-progress.h')
-rw-r--r-- | apt-pkg/install-progress.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apt-pkg/install-progress.h b/apt-pkg/install-progress.h index ee03ac217..23ddbbec6 100644 --- a/apt-pkg/install-progress.h +++ b/apt-pkg/install-progress.h @@ -42,7 +42,7 @@ namespace Progress { virtual void Pulse() {}; virtual long GetPulseInterval() { - return 500000; + return 50000000; }; virtual bool StatusChanged(std::string PackageName, |