Skip to content

Commit

Permalink
Fixed problem with NULL.
Browse files Browse the repository at this point in the history
  • Loading branch information
mhahsler committed Mar 7, 2019
1 parent 3864cb5 commit f9d2a84
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/warm.c
Original file line number Diff line number Diff line change
Expand Up @@ -510,7 +510,7 @@ SEXP R_wcount_ngCMatrix(SEXP x, SEXP t, SEXP R_weight,
int i, i0, j, k, kt, kz, f, f0, l, l0, m, n, nr, nc, ni, nj;
int *ix, *pt, *it, *pz, *iz, *j0;
double z, *w;
SEXP r, r0, px, fun;
SEXP r, r0, px, fun = R_fun;
#ifdef _TIME_H
time_t t0 = clock(), t1, t2;
if (LOGICAL(R_verbose)[0] == TRUE)
Expand Down

0 comments on commit f9d2a84

Please sign in to comment.