From c7f4cdbab7b1377bedd325bcad25c01f644eeca3 Mon Sep 17 00:00:00 2001 From: schulz Date: Wed, 24 Nov 2010 19:43:42 +0000 Subject: [PATCH] vkprintf was improperly used here. Please fix! git-svn-id: https://svn.aros.org/svn/aros/trunk/AROS@35741 fb15a70f-31f2-0310-bbcc-cdcc74a49acc --- rom/devs/filesys/afs/error.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/rom/devs/filesys/afs/error.c b/rom/devs/filesys/afs/error.c index 72e221d015..23453306bf 100644 --- a/rom/devs/filesys/afs/error.c +++ b/rom/devs/filesys/afs/error.c @@ -75,8 +75,9 @@ LONG showPtrArgsText(struct AFSBase *afsbase, char *string, enum showReqType typ else { /* We use kprintf for error printing when gfx.hidd is not initialized */ - vkprintf(string, args); - kprintf("\n"); +#warning wrong use of vkprintf!!! Please fix! +// vkprintf(string, args); +// kprintf("\n"); } return 0; } -- 2.11.4.GIT