Module Name:    src
Committed By:   rillig
Date:           Fri Sep 11 05:37:40 UTC 2020

Modified Files:
        src/usr.bin/make: make.h

Log Message:
make(1): add missing space in source code


To generate a diff of this commit:
cvs rdiff -u -r1.137 -r1.138 src/usr.bin/make/make.h

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/usr.bin/make/make.h
diff -u src/usr.bin/make/make.h:1.137 src/usr.bin/make/make.h:1.138
--- src/usr.bin/make/make.h:1.137	Wed Sep  2 23:42:58 2020
+++ src/usr.bin/make/make.h	Fri Sep 11 05:37:40 2020
@@ -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 @@ typedef unsigned char Boolean;
 #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

Reply via email to