wifi_drv: add missing 'Libc::with_libc()'

Fixes #2506
This commit is contained in:
Christian Prochaska 2017-08-22 17:42:38 +02:00 committed by Christian Helmuth
parent c509cabdba
commit e90d21c9ab

View File

@ -255,4 +255,7 @@ struct Main
};
void Libc::Component::construct(Libc::Env &env) { static Main server(env); }
void Libc::Component::construct(Libc::Env &env)
{
Libc::with_libc([&] () { static Main server(env); });
}