Skip to content

Commit

Permalink
switch to double appropriate print statement to quiet c compiler warning
Browse files Browse the repository at this point in the history
  • Loading branch information
skyebend committed Dec 8, 2023
1 parent de932b1 commit 1905489
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/wtedgetree.c
Original file line number Diff line number Diff line change
Expand Up @@ -625,7 +625,7 @@ void Wtprintedge(Edge e, WtTreeNode *edges){
Rprintf("\t.parent=%d\n",edges[e].parent);
Rprintf("\t.left=%d\n",edges[e].left);
Rprintf("\t.right=%d\n",edges[e].right);
Rprintf("\t.weight=%d\n",edges[e].weight);
Rprintf("\t.weight=%f\n",edges[e].weight);
}

/*****************
Expand Down

0 comments on commit 1905489

Please sign in to comment.