From bbe7f995afcb7fa1cd27b6ebf9a9e7dc77a66bfb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Revol?= Date: Thu, 10 Jan 2008 22:08:12 +0000 Subject: [PATCH] hey it's only 23:00! git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@23362 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/system/boot/platform/atari_m68k/toscalls.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/system/boot/platform/atari_m68k/toscalls.h b/src/system/boot/platform/atari_m68k/toscalls.h index ffde24f3e1..2e8d00f8ec 100644 --- a/src/system/boot/platform/atari_m68k/toscalls.h +++ b/src/system/boot/platform/atari_m68k/toscalls.h @@ -76,7 +76,7 @@ static inline int Bconputs(int16 handle, const char *string) { int i, err; for (i = 0; string[i]; i++) { - err = Bconout(string[i]); + err = Bconout(handle, string[i]); if (err) return i; }