summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authortkusumi <tkusumi@NetBSD.org>2023-05-17 06:44:38 +0000
committertkusumi <tkusumi@NetBSD.org>2023-05-17 06:44:38 +0000
commita1cdf716b4931d610ed082598f6f52a6bbdb22d2 (patch)
tree1c720a31f26c7916af5ba58f64d657376e5a6da5 /sys
parent5c8b2a46bbfaeb4359e4603ebe23bd61d845c907 (diff)
sys/fs/autofs: Remove unused APRINTF macro
Remove a debug print macro (originates from DragonFly autofs) I had intentionally kept at the time.
Diffstat (limited to 'sys')
-rw-r--r--sys/fs/autofs/autofs.h9
1 files changed, 1 insertions, 8 deletions
diff --git a/sys/fs/autofs/autofs.h b/sys/fs/autofs/autofs.h
index ffdfa0c82b6..3a87b20fba0 100644
--- a/sys/fs/autofs/autofs.h
+++ b/sys/fs/autofs/autofs.h
@@ -1,4 +1,4 @@
-/* $NetBSD: autofs.h,v 1.4 2019/11/23 17:13:46 tkusumi Exp $ */
+/* $NetBSD: autofs.h,v 1.5 2023/05/17 06:44:38 tkusumi Exp $ */
/*-
* Copyright (c) 2017 The NetBSD Foundation, Inc.
@@ -95,13 +95,6 @@ extern int autofs_interruptible;
} \
} while (0)
-/*
- * APRINTF is only for debugging.
- */
-#define APRINTF(X, ...) \
- printf("### %s(%s): " X, \
- __func__, curproc->p_comm, ## __VA_ARGS__)
-
struct autofs_node {
RB_ENTRY(autofs_node) an_entry;
char *an_name;