From a3171befe91dc13092809e5fe7cb5c724b1aeedf Mon Sep 17 00:00:00 2001 From: Stefan Kalkowski Date: Mon, 9 Apr 2018 14:00:14 +0200 Subject: [PATCH] dde_linux: canceling a pending work is no error Ref #2749 --- repos/dde_linux/src/include/lx_emul/impl/work.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/repos/dde_linux/src/include/lx_emul/impl/work.h b/repos/dde_linux/src/include/lx_emul/impl/work.h index d11bbc4fd8..717bfbfc38 100644 --- a/repos/dde_linux/src/include/lx_emul/impl/work.h +++ b/repos/dde_linux/src/include/lx_emul/impl/work.h @@ -101,7 +101,7 @@ bool cancel_delayed_work_sync(struct delayed_work *dwork) bool pending = cancel_delayed_work(dwork); if (pending) { - Genode::error("WARN: delayed_work ", dwork, " is executed directly in " + Genode::warning("WARN: delayed_work ", dwork, " is executed directly in " "current '", Lx::scheduler().current()->name(), "' routine"); dwork->work.func(&dwork->work);