Skip to content
Snippets Groups Projects
Commit 8650be10 authored by Lioncash's avatar Lioncash
Browse files

lm: Add missing function entry to Logger's function table

parent d2456109
No related branches found
No related tags found
No related merge requests found
...@@ -16,6 +16,7 @@ public: ...@@ -16,6 +16,7 @@ public:
Logger() : ServiceFramework("Logger") { Logger() : ServiceFramework("Logger") {
static const FunctionInfo functions[] = { static const FunctionInfo functions[] = {
{0x00000000, &Logger::Log, "Log"}, {0x00000000, &Logger::Log, "Log"},
{0x00000001, nullptr, "SetDestination"},
}; };
RegisterHandlers(functions); RegisterHandlers(functions);
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment