diff options
Diffstat (limited to 'gnuradio-runtime/lib/pagesize.cc')
-rw-r--r-- | gnuradio-runtime/lib/pagesize.cc | 2 |
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 |