diff options
| author | rillig <rillig@NetBSD.org> | 2020-09-12 14:41:00 +0000 |
|---|---|---|
| committer | rillig <rillig@NetBSD.org> | 2020-09-12 14:41:00 +0000 |
| commit | 4eaedbdd735dc48127deb2ecbdd49e968f141068 (patch) | |
| tree | c305e36134f086f0f297ca507014f461c29bd886 /usr.bin/make/meta.c | |
| parent | fa1f0e92ae9f9c506d9049d3be01200bc8419efe (diff) | |
make(1): fix inconsistent code indentation
Diffstat (limited to 'usr.bin/make/meta.c')
| -rw-r--r-- | usr.bin/make/meta.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/make/meta.c b/usr.bin/make/meta.c index a92023f9a7a..c831dc67895 100644 --- a/usr.bin/make/meta.c +++ b/usr.bin/make/meta.c @@ -1,4 +1,4 @@ -/* $NetBSD: meta.c,v 1.113 2020/09/02 04:08:54 rillig Exp $ */ +/* $NetBSD: meta.c,v 1.114 2020/09/12 14:41:00 rillig Exp $ */ /* * Implement 'meta' mode. @@ -961,7 +961,7 @@ path_match(const void *p, const void *q) size_t n = strlen(prefix); if (strncmp(path, prefix, n) != 0) - return FALSE; + return FALSE; return path[n] == '\0' || path[n] == '/'; } |
