1
0
Fork 0
mirror of https://github.com/NixOS/hydra.git synced 2024-10-18 17:02:28 -04:00

* Shut up a harmless warning about an uninitialised variable.

This commit is contained in:
Eelco Dolstra 2010-02-09 14:10:16 +00:00
parent 9409d20f39
commit 6c35801173

View file

@ -49,7 +49,7 @@ sub errors : Chained('get_builds') PathPart Args(0) {
sub all : Chained('get_builds') PathPart { sub all : Chained('get_builds') PathPart {
my ($self, $c) = @_; my ($self, $c) = @_;
my $page = int($c->req->param('page')) || 1; my $page = int($c->req->param('page') || "1") || 1;
my $resultsPerPage = 20; my $resultsPerPage = 20;