From d8239a9cc4bb61a9c12b643c275fba1c69a65ea8 Mon Sep 17 00:00:00 2001 From: Iestyn Pryce Date: Sun, 21 May 2017 11:14:21 +0100 Subject: [PATCH] Revert format regression introduced in ecd07b18c118fc1e52ea30d9a91d7dc6f049258c --- src/logistic_regression.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/logistic_regression.c b/src/logistic_regression.c index 329c0c0b..26e41003 100644 --- a/src/logistic_regression.c +++ b/src/logistic_regression.c @@ -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) { - 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; }