From 3cebd9325ee9ac1bc7b3a88f4ed38788f170c5d8 Mon Sep 17 00:00:00 2001 From: simonb Date: Fri, 11 Feb 2005 06:21:21 +0000 Subject: White space nit- don't put a space before/after increment/decrement operators. --- sys/dev/microcode/siop/ncr53cxxx.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'sys/dev/microcode') diff --git a/sys/dev/microcode/siop/ncr53cxxx.c b/sys/dev/microcode/siop/ncr53cxxx.c index a274436a417..e6dd4655d79 100644 --- a/sys/dev/microcode/siop/ncr53cxxx.c +++ b/sys/dev/microcode/siop/ncr53cxxx.c @@ -1,4 +1,4 @@ -/* $NetBSD: ncr53cxxx.c,v 1.13 2004/05/16 22:45:51 bouyer Exp $ */ +/* $NetBSD: ncr53cxxx.c,v 1.14 2005/02/11 06:21:22 simonb Exp $ */ /* * Copyright (c) 1995,1999 Michael L. Hitch @@ -33,7 +33,7 @@ /* ncr53cxxx.c - SCSI SCRIPTS Assembler */ #include -__RCSID("$NetBSD: ncr53cxxx.c,v 1.13 2004/05/16 22:45:51 bouyer Exp $"); +__RCSID("$NetBSD: ncr53cxxx.c,v 1.14 2005/02/11 06:21:22 simonb Exp $"); #include #include @@ -418,7 +418,7 @@ main (int argc, char *argv[]) if (outfp) { time_t cur_time; - fprintf(outfp, "/*\t$NetBSD: ncr53cxxx.c,v 1.13 2004/05/16 22:45:51 bouyer Exp $\t*/\n"); + fprintf(outfp, "/*\t$NetBSD: ncr53cxxx.c,v 1.14 2005/02/11 06:21:22 simonb Exp $\t*/\n"); fprintf(outfp, "/*\n"); fprintf(outfp, " *\tDO NOT EDIT - this file is automatically generated.\n"); time(&cur_time); @@ -1310,7 +1310,7 @@ void block_move () inst0 |= evaluate (tokenix++); /* count */ tokenix++; /* skip ',' */ if (reserved ("ptr", tokenix)) { - ++ tokenix; + ++tokenix; inst0 |= 0x20000000; } inst1 = evaluate (tokenix++); /* address */ -- cgit