Kaydet (Commit) 2a2c05e9 authored tarafından Tor Lillqvist's avatar Tor Lillqvist

Redirect error message we aren't interested in to /dev/null

üst e655c33a
...@@ -32,7 +32,7 @@ sub reg_find_key($) ...@@ -32,7 +32,7 @@ sub reg_find_key($)
# depending on OS version, this will de-mangle that # depending on OS version, this will de-mangle that
my $key = shift; my $key = shift;
$key =~ s| |\\ |; $key =~ s| |\\ |;
$key = `cd /proc/registry/ ; ls $key`; $key = `cd /proc/registry/ ; ls $key 2>/dev/null`;
return $key; return $key;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment