From 326e4be47997f523a103ed11189ca35b9c1741b2 Mon Sep 17 00:00:00 2001 From: Masatake YAMATO Date: Sun, 4 Jun 2023 03:42:38 +0900 Subject: [PATCH] lsfd: fix a sentence in comment Signed-off-by: Masatake YAMATO --- misc-utils/lsfd-filter.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/misc-utils/lsfd-filter.c b/misc-utils/lsfd-filter.c index 3f5ba1fea0..a3d44bb35c 100644 --- a/misc-utils/lsfd-filter.c +++ b/misc-utils/lsfd-filter.c @@ -31,7 +31,7 @@ enum token_type { TOKEN_NAME, /* [A-Za-z_][-_:%.A-Za-z0-9]* */ TOKEN_STR, /* "...", '...' */ - TOKEN_DEC, /* [1-9][0-9]+, NOTE: negative value is no dealt. */ + TOKEN_DEC, /* [1-9][0-9]+, NOTE: negative value has not handled. */ TOKEN_HEX, /* 0x[0-9a-f]+ not implemented */ TOKEN_OCT, /* 0[1-7]+ not implemented */ TOKEN_TRUE, /* true */ -- 2.47.3