From: Greg Sabino Mullane Date: Fri, 13 Mar 2009 14:42:28 +0000 (-0400) Subject: Need additional zero to support previous fix. X-Git-Tag: 2.9.0~144 X-Git-Url: http://git.postgresql.org/gitweb/static/gitweb.js?a=commitdiff_plain;h=8f16bd337a37d56570a64806547cc3e0ff9aea86;p=check_postgres.git Need additional zero to support previous fix. --- diff --git a/check_postgres.pl b/check_postgres.pl index 33f6a6fb1..d1538fa05 100755 --- a/check_postgres.pl +++ b/check_postgres.pl @@ -4374,7 +4374,7 @@ sub show_dbstats { next SLURP unless $keepit; } my $template = "backends:%d commits:%d rollbacks:%d read:%d hit:%d ret:%d fetch:%d ins:%d upd: %d del:%d"; - my $msg = sprintf "$template", @stats, (0,0,0,0); + my $msg = sprintf "$template", @stats, (0,0,0,0,0); print "$msg dbname:$dbname\n"; } }