summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xbin/lolcat2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/lolcat b/bin/lolcat
index ecc30655b5c2..27bb32624e08 100755
--- a/bin/lolcat
+++ b/bin/lolcat
@@ -14,7 +14,7 @@ my $pid = '';
while (<LOGCAT>) {
if (m!^I/ActivityManager\( *\d+\): Start proc $id for activity .*: pid=(\d+)!) {
$pid = $1;
- } elsif (m!^[EIW]/[^(]+\( *$pid\)!) {
+ } elsif (m!^[EIWD]/[^(]+\( *$pid\)!) {
print $_;
STDOUT->flush();
}