From ae5740f063614649f4d40b47b3bd49300840fb3f Mon Sep 17 00:00:00 2001 From: mycroft Date: Wed, 8 Feb 1995 18:15:25 +0000 Subject: [PATCH] size_t is unsigned. --- lib/libc/arch/m68k/string/bcopy.S | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/libc/arch/m68k/string/bcopy.S b/lib/libc/arch/m68k/string/bcopy.S index 3a78b853b240..e5f02badb367 100644 --- a/lib/libc/arch/m68k/string/bcopy.S +++ b/lib/libc/arch/m68k/string/bcopy.S @@ -38,7 +38,7 @@ #if defined(LIBC_SCCS) && !defined(lint) .text /*.asciz "from: @(#)bcopy.s 5.1 (Berkeley) 5/12/90"*/ - .asciz "$Id: bcopy.S,v 1.3 1993/12/07 03:28:53 mycroft Exp $" + .asciz "$Id: bcopy.S,v 1.4 1995/02/08 18:15:25 mycroft Exp $" #endif /* LIBC_SCCS and not lint */ #include "DEFS.h" @@ -62,7 +62,7 @@ ENTRY(bcopy) #endif #endif movl sp@(12),d1 /* check count */ - jle bcdone /* <= 0, don't do anything */ + beq bcdone /* == 0, don't do anything */ #if defined(MEMCOPY) || defined(MEMMOVE) movl sp@(4),a1 /* dest address */ movl sp@(8),a0 /* src address */