diff options
author | Greg Sabino Mullane | 2009-08-27 16:50:10 +0000 |
---|---|---|
committer | Greg Sabino Mullane | 2009-08-27 16:50:10 +0000 |
commit | 89cae658aa148aa3a22693ed0b98a18115a4f16a (patch) | |
tree | b6b633ff4a7a3dca371709d6f72b25d198e7651a /check_postgres.pl | |
parent | 34ea5c5793e5f2fd82c1c67c871279a3c425ae27 (diff) |
Single quote constants.
Diffstat (limited to 'check_postgres.pl')
-rwxr-xr-x | check_postgres.pl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/check_postgres.pl b/check_postgres.pl index bc6e3d19b..8a826c7e3 100755 --- a/check_postgres.pl +++ b/check_postgres.pl @@ -3585,7 +3585,7 @@ sub check_locks { if ($warning and exists $warning->{$type}) { $db->{perf} .= $warning->{$type}; } - $db->{perf} .= ";"; + $db->{perf} .= ';'; if ($critical and $critical->{$type}) { $db->{perf} .= $critical->{$type}; } @@ -4208,9 +4208,9 @@ sub check_txn_wraparound { my ($dbname,$dbtxns) = ($1,$2); $db->{perf} .= " '$dbname'=$dbtxns;"; $db->{perf} .= $warning if length $warning; - $db->{perf} .= ";"; + $db->{perf} .= ';'; $db->{perf} .= $critical if length $critical; - $db->{perf} .= ";0;2000000000"; + $db->{perf} .= ';0;2000000000'; next SLURP if skip_item($dbname); if ($dbtxns > $max) { $max = $dbtxns; |