summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--urpm/download.pm2
-rw-r--r--urpm/install.pm2
2 files changed, 2 insertions, 2 deletions
diff --git a/urpm/download.pm b/urpm/download.pm
index c21caeca..25f43fdb 100644
--- a/urpm/download.pm
+++ b/urpm/download.pm
@@ -815,7 +815,7 @@ END {
#- get the width of the terminal
my $wchar = 79;
-if (-t STDOUT) {
+if (-t *STDOUT) {
eval {
require Term::ReadKey;
($wchar) = Term::ReadKey::GetTerminalSize();
diff --git a/urpm/install.pm b/urpm/install.pm
index d4b83706..ac68c9eb 100644
--- a/urpm/install.pm
+++ b/urpm/install.pm
@@ -21,7 +21,7 @@ urpm::install - Package installation transaction routines for urpmi
# size of the installation progress bar
my $progress_size = 45;
-if (-t STDOUT) {
+if (-t *STDOUT) {
eval {
require Term::ReadKey;
($progress_size) = Term::ReadKey::GetTerminalSize();