Module Name: src
Committed By: rillig
Date: Tue Dec 15 01:23:55 UTC 2020
Modified Files:
src/usr.bin/make: hash.h make_malloc.h
Log Message:
make(1): indent hash.h and make_malloc.h with tabs instead of spaces
To generate a diff of this commit:
cvs rdiff -u -r1.37 -r1.38 src/usr.bin/make/hash.h
cvs rdiff -u -r1.13 -r1.14 src/usr.bin/make/make_malloc.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/hash.h
diff -u src/usr.bin/make/hash.h:1.37 src/usr.bin/make/hash.h:1.38
--- src/usr.bin/make/hash.h:1.37 Sun Nov 29 09:27:40 2020
+++ src/usr.bin/make/hash.h Tue Dec 15 01:23:55 2020
@@ -1,4 +1,4 @@
-/* $NetBSD: hash.h,v 1.37 2020/11/29 09:27:40 rillig Exp $ */
+/* $NetBSD: hash.h,v 1.38 2020/12/15 01:23:55 rillig Exp $ */
/*
* Copyright (c) 1988, 1989, 1990 The Regents of the University of California.
@@ -164,7 +164,7 @@ HashSet_Contains(HashSet *set, const cha
MAKE_INLINE void
HashIter_InitSet(HashIter *hi, HashSet *set)
{
- HashIter_Init(hi, &set->tbl);
+ HashIter_Init(hi, &set->tbl);
}
#endif /* MAKE_HASH_H */
Index: src/usr.bin/make/make_malloc.h
diff -u src/usr.bin/make/make_malloc.h:1.13 src/usr.bin/make/make_malloc.h:1.14
--- src/usr.bin/make/make_malloc.h:1.13 Tue Nov 10 00:32:12 2020
+++ src/usr.bin/make/make_malloc.h Tue Dec 15 01:23:55 2020
@@ -1,4 +1,4 @@
-/* $NetBSD: make_malloc.h,v 1.13 2020/11/10 00:32:12 rillig Exp $ */
+/* $NetBSD: make_malloc.h,v 1.14 2020/12/15 01:23:55 rillig Exp $ */
/*-
* Copyright (c) 2009 The NetBSD Foundation, Inc.
@@ -49,6 +49,6 @@ char *bmake_strsedup(const char *, const
MAKE_INLINE void
bmake_free(void *p)
{
- if (p != NULL)
- free(p);
+ if (p != NULL)
+ free(p);
}