From 0d1edfc8fbefd63919722a3951a79a929c7339f3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Carl-Benedikt=20Kr=C3=BCger?= Date: Tue, 12 Jul 2011 15:47:00 +0200 Subject: [PATCH] shell test --- kernel/shell.c | 2 +- kernel/shell.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/kernel/shell.c b/kernel/shell.c index 96bf767f..825195ca 100644 --- a/kernel/shell.c +++ b/kernel/shell.c @@ -15,7 +15,7 @@ static int iamsrv = 0; #include -void shelldebugprintf(char* x,...) +void shelldebugprint(char* x) { kprintf("debugprinting"); if (iamsrv) diff --git a/kernel/shell.h b/kernel/shell.h index 553211d7..b44fcf91 100644 --- a/kernel/shell.h +++ b/kernel/shell.h @@ -1,7 +1,7 @@ #ifndef SHELL_H #define SHELL_H -void shelldebugprintf(char* x,...); +void shelldebugprint(char* x); void shell_init(int srv_or_cli);