Skip to content

Commit

Permalink
fix for RT/100995 (thx jrosenboom)
Browse files Browse the repository at this point in the history
  • Loading branch information
barefootcoder committed Mar 8, 2015
1 parent 88b81cb commit c67887d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Data/Random.pm
Expand Up @@ -478,7 +478,7 @@ sub rand_image {
return $image->png();

sub _color {
return [ int( rand(266) ), int( rand(266) ), int( rand(266) ) ];
return [ int( rand(256) ), int( rand(256) ), int( rand(256) ) ];
}
}

Expand Down

0 comments on commit c67887d

Please sign in to comment.