Prevent compiler warnings

Fixes #464.
This commit is contained in:
Christian Helmuth
2012-11-05 10:57:29 +01:00
parent c99dd8fdf8
commit 7c77d0ee5f
2 changed files with 7 additions and 7 deletions

View File

@ -20,7 +20,7 @@ extern "C" {
extern "C" void dde_kit_print(const char *msg)
{
Genode::printf(msg);
Genode::printf("%s", msg);
}