diff options
author | Bart Van Assche <bvanassche@acm.org> | 2020-05-23 20:28:21 -0700 |
---|---|---|
committer | Bart Van Assche <bvanassche@acm.org> | 2020-05-23 20:44:36 -0700 |
commit | 44031abf8f8974beb52c244bf64c6b280de74292 (patch) | |
tree | 28250ea290e9eedde79d0e0d779e767f823a7986 /lib/pattern.c | |
parent | d51e4ffa596b617cdb41680b31a4a3895a5307fc (diff) | |
download | fio-44031abf8f8974beb52c244bf64c6b280de74292.tar.gz fio-44031abf8f8974beb52c244bf64c6b280de74292.tar.bz2 |
Fix spelling in a source code comment
Change two occurrences of 'descritor' into 'descriptor'
Cc: Roman Pen <r.peniaev@gmail.com>
Fixes: 634bd210c17a ("lib/pattern: add set of functions to parse combined pattern input")
Signed-off-by: Bart Van Assche <bvanassche@acm.org>
Diffstat (limited to 'lib/pattern.c')
-rw-r--r-- | lib/pattern.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/pattern.c b/lib/pattern.c index 2024f2e9..04d30657 100644 --- a/lib/pattern.c +++ b/lib/pattern.c @@ -204,8 +204,8 @@ static const char *parse_number(const char *beg, char *out, * @out - output buffer where space for format should be reserved * @parsed - number of bytes which were already parsed so far * @out_len - length of the output buffer - * @fmt_desc - format descritor array, what we expect to find - * @fmt_desc_sz - size of the format descritor array + * @fmt_desc - format descriptor array, what we expect to find + * @fmt_desc_sz - size of the format descriptor array * @fmt - format array, the output * @fmt_sz - size of format array * |