From 2835cf8a439a6cdc8460158d4249f8ca36bf8c0e Mon Sep 17 00:00:00 2001 From: Rusty Russell Date: Mon, 31 Aug 2020 10:43:25 +0930 Subject: [PATCH] tools/check-bolt: don't trigger ourselves. We're going to make check-source cover every C file soon. Signed-off-by: Rusty Russell --- tools/check-bolt.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/check-bolt.c b/tools/check-bolt.c index e8bb39660..37f7c6463 100644 --- a/tools/check-bolt.c +++ b/tools/check-bolt.c @@ -101,7 +101,7 @@ static char *find_bolt_ref(const char *prefix, char **p, size_t *len) char *bolt, *end; size_t preflen; - /* BOLT #X: */ + /* Quote is of form 'BOLT #X:' */ *p = strchr(*p, '*'); if (!*p) return NULL;