Skip to content

Commit 29da979

Browse files
Antonov548maelle
authored andcommitted
fix compilation
1 parent 706cb35 commit 29da979

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/rinterface_extra.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8346,8 +8346,8 @@ SEXP R_igraph_power_law_fit_new(SEXP data, SEXP xmin, SEXP force_continuous, SEX
83468346
c_xmin = REAL(xmin)[0];
83478347
IGRAPH_R_CHECK_BOOL(force_continuous);
83488348
c_force_continuous = LOGICAL(force_continuous)[0];
8349-
IGRAPH_R_CHECK_BOOL(pvalue);
8350-
c_compute_pvalue = LOGICAL(pvalue)[0];
8349+
IGRAPH_R_CHECK_BOOL(compute_pvalue);
8350+
c_compute_pvalue = LOGICAL(compute_pvalue)[0];
83518351

83528352
IGRAPH_R_CHECK(igraph_power_law_fit(&c_data, &c_res, c_xmin, c_force_continuous));
83538353

0 commit comments

Comments
 (0)