From 02e2c82005c8878026aea05436e0f59f3f5f8531 Mon Sep 17 00:00:00 2001 From: johanknol Date: Wed, 21 Feb 2001 15:56:10 +0000 Subject: [PATCH] Fixed a type found by Scott git-svn-id: https://sdcc.svn.sourceforge.net/svnroot/sdcc/trunk/sdcc@642 4a8a32a2-be11-0410-ad9d-d568d2c75423 --- device/lib/ds390/tinibios.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/device/lib/ds390/tinibios.c b/device/lib/ds390/tinibios.c index d70e4427..71c56cbd 100755 --- a/device/lib/ds390/tinibios.c +++ b/device/lib/ds390/tinibios.c @@ -338,7 +338,7 @@ static data unsigned char serial1Buffered; void Serial1Init (unsigned long baud, unsigned char buffered) { - if (baud=0) { + if (baud==0) { ES1=0; // disable interrupt SCON1 &= 0xef; // disable receiver } -- 2.47.2