From 2b23d38c5bacca8a049bd6e6f03578962e3e1f38 Mon Sep 17 00:00:00 2001 From: Ben Gras Date: Fri, 21 Oct 2005 18:20:26 +0000 Subject: [PATCH] Panic fix --- drivers/fxp/fxp.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/drivers/fxp/fxp.c b/drivers/fxp/fxp.c index f9828b43c..80c75fafa 100644 --- a/drivers/fxp/fxp.c +++ b/drivers/fxp/fxp.c @@ -287,8 +287,6 @@ int main(int argc, char *argv[]) r = findproc("inet", &tasknr); if (r == OK) notify(tasknr); - else - printf("fxp: cannot find proc number for inet: %d\n", r); while (TRUE) { @@ -1600,7 +1598,7 @@ message *mp; mp->m_type= DL_NAME_REPLY; r= send(mp->m_source, mp); if (r != OK) - panic("FXP", "fxp_getname: send failed: %d\n", r); + panic("FXP", "fxp_getname: send failed", r); } /*===========================================================================*