summaryrefslogtreecommitdiff
path: root/gnuradio-runtime/lib
diff options
context:
space:
mode:
authorjapm48 <japm48@users.noreply.github.com>2020-10-20 13:20:46 +0200
committermormj <34754695+mormj@users.noreply.github.com>2020-10-20 09:37:52 -0400
commit44f6be7bf0e6764b20991384bdb4f0fa6e87c4e8 (patch)
tree6c8a23c56936c0580751a22cd61b233677f918e5 /gnuradio-runtime/lib
parent74ae2184b1f5b025418bf57ba604f3e7a1f97523 (diff)
runtime: fix Windows logging
This removes a few compilation errors in Windows related to logging functions (see PR #3339).
Diffstat (limited to 'gnuradio-runtime/lib')
-rw-r--r--gnuradio-runtime/lib/vmcircbuf_createfilemapping.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/gnuradio-runtime/lib/vmcircbuf_createfilemapping.cc b/gnuradio-runtime/lib/vmcircbuf_createfilemapping.cc
index 04860103c6..3b79a09e30 100644
--- a/gnuradio-runtime/lib/vmcircbuf_createfilemapping.cc
+++ b/gnuradio-runtime/lib/vmcircbuf_createfilemapping.cc
@@ -46,7 +46,7 @@ static void werror(char* where, DWORD last_error)
buf,
sizeof(buf) / sizeof(TCHAR), // buffer size
NULL);
- GR_LOG_ERROR(logger, boost::format("%s: Error %d: %s" % where % last_error % buf));
+ GR_LOG_ERROR(logger, boost::format("%s: Error %d: %s") % where % last_error % buf);
return;
}
#endif