From 8c925e90f5cfe33adad5f1e48294d97c0b9c9a76 Mon Sep 17 00:00:00 2001 From: Andre Puschmann Date: Thu, 16 Apr 2020 10:24:27 +0200 Subject: [PATCH] rrc: fix compile error on 32bit machines --- srsue/src/stack/rrc/rrc.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srsue/src/stack/rrc/rrc.cc b/srsue/src/stack/rrc/rrc.cc index 5b87b1f9c..21db678dc 100644 --- a/srsue/src/stack/rrc/rrc.cc +++ b/srsue/src/stack/rrc/rrc.cc @@ -397,7 +397,7 @@ void rrc::process_cell_meas() void rrc::process_new_cell_meas(const std::vector& meas) { bool neighbour_added = false; - rrc_log->debug("MEAS: Processing measurement of %lu cells\n", meas.size()); + rrc_log->debug("MEAS: Processing measurement of %zd cells\n", meas.size()); for (auto& m : meas) { cell_t* c = nullptr; // Get serving_cell handle if it's the serving cell