Fix: erroneous specifier used with ERR_FMT macro
[lttng-tools.git] / src / bin / lttng-sessiond / main.cpp
index 3e5d8eeeaca01791c742ca2d4c58fa3f733c14fb..bfd53e7e47041818996b55d9bb15266901688ebf 100644 (file)
@@ -1982,7 +1982,7 @@ int main(int argc, char **argv)
        try {
                return _main(argc, argv);
        } catch (const std::exception& e) {
-               ERR_FMT("Unhandled exception caught by main thread: %s", e.what());
+               ERR_FMT("Unhandled exception caught by main thread: {}", e.what());
                abort();
        }
 }
This page took 0.02248 seconds and 4 git commands to generate.