Skip to content
Snippets Groups Projects
Commit bae467ba authored by Andreas Kusalananda Kähäri's avatar Andreas Kusalananda Kähäri
Browse files

Small fix to not multiply declare a variable.

parent 450fd3c7
No related branches found
No related tags found
No related merge requests found
......@@ -594,7 +594,7 @@ sub fetch_all_by_Slice {
$sth->execute();
my ( $tr_id, $ex_id, $rank );
my ( $ex_id, $rank ); # $tr_id already declared.
$sth->bind_columns( \( $tr_id, $ex_id, $rank ) );
my %ex_tr_hash;
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment