From: Evan Huus Date: Sat, 2 Mar 2013 21:16:32 +0000 (-0000) Subject: Don't pass -v straight to valgrind, it's rarely useful. Just increasing X-Git-Url: http://git.samba.org/?p=metze%2Fwireshark%2Fwip.git;a=commitdiff_plain;h=16bda3caf43f22829a53ae486dcf3ff94f096d09 Don't pass -v straight to valgrind, it's rarely useful. Just increasing num-callers is usually enough. svn path=/trunk/; revision=48017 --- diff --git a/tools/valgrind-wireshark.sh b/tools/valgrind-wireshark.sh index d465148d61..cb503cde5b 100755 --- a/tools/valgrind-wireshark.sh +++ b/tools/valgrind-wireshark.sh @@ -54,7 +54,7 @@ while getopts ":2b:C:lnrtTwcev" OPTCHAR ; do COMMAND_ARGS="-E 0.02" # We don't care about the output of editcap COMMAND_ARGS2="/dev/null" ;; - v) VERBOSE="-v --num-callers=256" ;; + v) VERBOSE="--num-callers=256" ;; *) printf "Unknown option -$OPTARG!\n" exit ;; esac