Revert format regression introduced in ecd07b18c1

This commit is contained in:
Iestyn Pryce
2017-05-21 11:14:21 +01:00
parent 73d27caeb9
commit d8239a9cc4

View File

@@ -31,7 +31,7 @@ bool logistic_regression_model_expectation(double_matrix_t *theta, sparse_matrix
} }
if (sparse_matrix_dot_dense(x, theta, p_y) != 0) { if (sparse_matrix_dot_dense(x, theta, p_y) != 0) {
log_error("x->m = %" PRIu32 ", x->n = %" PRIu32 ", theta->m = %" PRIu32 ", theta->n = %" PRIu32 ", p_y->m = %zu, p_y->n = %zu\n", x->m, x->n, theta->m, theta->n, p_y->m, p_y->n); log_error("x->m = %" PRIu32 ", x->n = %" PRIu32 ", theta->m = %zu, theta->n = %zu, p_y->m = %zu, p_y->n = %zu\n", x->m, x->n, theta->m, theta->n, p_y->m, p_y->n);
return false; return false;
} }