From 16cfa9fae6ff1965da2577c2ff99bb3ae6e18c31 Mon Sep 17 00:00:00 2001 From: hunt Date: Mon, 20 Mar 2006 22:55:15 +0000 Subject: 2006-03-20 Martin Hunt * small_demos/key.stp: Pipe output to dev/null. --- examples/small_demos/key.stp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'examples/small_demos') diff --git a/examples/small_demos/key.stp b/examples/small_demos/key.stp index 0489524a..6d2d6c3f 100755 --- a/examples/small_demos/key.stp +++ b/examples/small_demos/key.stp @@ -7,9 +7,9 @@ probe kernel.function("kbd_event") { if ($event_type == 1 && $value) { if ($event_code == 28) - system("play return.wav") + system("play return.wav &> /dev/null") else - system("play click.wav") + system("play click.wav &> /dev/null") } } -- cgit