Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/usr.bin/make make(1): add missing space in source code



details:   https://anonhg.NetBSD.org/src/rev/f5a8ba50f82f
branches:  trunk
changeset: 938565:f5a8ba50f82f
user:      rillig <rillig%NetBSD.org@localhost>
date:      Fri Sep 11 05:37:40 2020 +0000

description:
make(1): add missing space in source code

diffstat:

 usr.bin/make/make.h |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (18 lines):

diff -r 7bf87192d51d -r f5a8ba50f82f usr.bin/make/make.h
--- a/usr.bin/make/make.h       Fri Sep 11 05:29:46 2020 +0000
+++ b/usr.bin/make/make.h       Fri Sep 11 05:37:40 2020 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: make.h,v 1.137 2020/09/02 23:42:58 rillig Exp $        */
+/*     $NetBSD: make.h,v 1.138 2020/09/11 05:37:40 rillig Exp $        */
 
 /*
  * Copyright (c) 1988, 1989, 1990, 1993
@@ -144,7 +144,7 @@
 #define TRUE ((unsigned char)0xFF)
 #define FALSE ((unsigned char)0x00)
 #elif defined(USE_ENUM_BOOLEAN)
-typedef enum { FALSE, TRUE} Boolean;
+typedef enum { FALSE, TRUE } Boolean;
 #else
 typedef int Boolean;
 #endif



Home | Main Index | Thread Index | Old Index