diff options
author | Yu Watanabe <watanabe.yu+github@gmail.com> | 2020-11-13 08:19:49 +0100 |
---|---|---|
committer | Yu Watanabe <watanabe.yu+github@gmail.com> | 2020-11-13 08:28:47 +0100 |
commit | d51c4fca291c6b8e566df65b0fd6e6262c3bf988 (patch) | |
tree | 4cb4d803f5002c1160272da6a6a964081608cac9 /src/shared/conf-parser.h | |
parent | ratelimit: fix integer overflow (diff) | |
download | systemd-d51c4fca291c6b8e566df65b0fd6e6262c3bf988.tar.xz systemd-d51c4fca291c6b8e566df65b0fd6e6262c3bf988.zip |
tree-wide: fix "a the" or "the a"
Diffstat (limited to 'src/shared/conf-parser.h')
-rw-r--r-- | src/shared/conf-parser.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shared/conf-parser.h b/src/shared/conf-parser.h index 8f8714361d..f115cb23af 100644 --- a/src/shared/conf-parser.h +++ b/src/shared/conf-parser.h @@ -35,7 +35,7 @@ typedef enum ConfigParseFlags { /* Prototype for a parser for a specific configuration setting */ typedef int (*ConfigParserCallback)(CONFIG_PARSER_ARGUMENTS); -/* A macro declaring the a function prototype, following the typedef above, simply because it's so cumbersomely long +/* A macro declaring a function prototype, following the typedef above, simply because it's so cumbersomely long * otherwise. (And current emacs gets irritatingly slow when editing files that contain lots of very long function * prototypes on the same screen…) */ #define CONFIG_PARSER_PROTOTYPE(name) int name(CONFIG_PARSER_ARGUMENTS) |