From 32c72ecf0443c09371d5dad2770add54b3f6bd5f Mon Sep 17 00:00:00 2001 From: rexim Date: Tue, 28 Aug 2018 20:01:40 +0700 Subject: [PATCH] TODO(#307) --- src/script/parser.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/script/parser.c b/src/script/parser.c index 82b2246d..5c1da231 100644 --- a/src/script/parser.c +++ b/src/script/parser.c @@ -178,7 +178,7 @@ struct ParseResult read_expr_from_file(const char *filename) FILE *stream = PUSH_LT(lt, fopen(filename, "rb"), fclose_lt); if (!stream) { - /* TODO: ParseResult should not be used for reporting IO failures */ + /* TODO(#307): ParseResult should not be used for reporting IO failures */ RETURN_LT(lt, parse_failure(strerror(errno), NULL)); } -- 2.44.0