summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Braun <martin@gnuradio.org>2021-02-12 08:51:30 +0100
committerMartin Braun <martin@gnuradio.org>2021-02-15 13:01:06 +0100
commit447409f65ba2e43b6f10ffbbc921eadc7e52aa00 (patch)
tree5c9377c8e5a1da985cad108513e50e68fae3d959
parent59ff4446b8fc4299c432b570885484633c6f3f30 (diff)
runtime: Fix missing % in pagesize log statement
Signed-off-by: Martin Braun <martin@gnuradio.org>
-rw-r--r--gnuradio-runtime/lib/pagesize.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/gnuradio-runtime/lib/pagesize.cc b/gnuradio-runtime/lib/pagesize.cc
index c4311012e7..f76249df1c 100644
--- a/gnuradio-runtime/lib/pagesize.cc
+++ b/gnuradio-runtime/lib/pagesize.cc
@@ -37,7 +37,7 @@ int pagesize()
#elif defined(HAVE_SYSCONF)
s_pagesize = sysconf(_SC_PAGESIZE);
if (s_pagesize == -1) {
- GR_LOG_ERROR(logger, boost::format("_SC_PAGESIZE: %s") strerror(errno));
+ GR_LOG_ERROR(logger, boost::format("_SC_PAGESIZE: %s") % strerror(errno));
s_pagesize = 4096;
}
#else