Skip to content

Commit

Permalink
vht: Create the correct vector
Browse files Browse the repository at this point in the history
  • Loading branch information
jedbrown committed May 25, 2011
1 parent 5ea13a1 commit b77a3f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/fs/tests/vht.c
Original file line number Diff line number Diff line change
Expand Up @@ -462,7 +462,7 @@ static dErr VHTSetFromOptions(VHT vht)
err = dFSCreateExpandedVector(fsp,&vht->xp);dCHK(err);
err = VecDuplicate(vht->xp,&vht->yp);dCHK(err);

err = dFSCreateExpandedVector(fsu,&vht->xe);dCHK(err);
err = dFSCreateExpandedVector(fse,&vht->xe);dCHK(err);
err = VecDuplicate(vht->xe,&vht->ye);dCHK(err);

{
Expand Down

0 comments on commit b77a3f3

Please sign in to comment.