diff options
author | Bernd Petrovitsch <bernd@sysprog.at> | 2010-08-20 12:36:38 +0200 |
---|---|---|
committer | Christopher Li <sparse@chrisli.org> | 2010-09-01 00:57:16 -0700 |
commit | 1588e1a4dbb26c0ca476c3de825699d3b89ad54b (patch) | |
tree | 948fc2ade9b18277e3e74d2aa70a7ece05414add | |
parent | inspect: cast expression (diff) | |
download | sparse-1588e1a4dbb26c0ca476c3de825699d3b89ad54b.tar.gz sparse-1588e1a4dbb26c0ca476c3de825699d3b89ad54b.tar.bz2 sparse-1588e1a4dbb26c0ca476c3de825699d3b89ad54b.zip |
Fix a typo - "typdef" is neither C nor plain English
Signed-off-by: Bernd Petrovitsch <bernd@sysprog.at>
Signed-off-by: Christopher Li <sparse@chrisli.org>
-rw-r--r-- | show-parse.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/show-parse.c b/show-parse.c index f249f4b..d7b502d 100644 --- a/show-parse.c +++ b/show-parse.c @@ -100,7 +100,7 @@ const char *modifier_string(unsigned long mod) "auto", "register", "static", "extern", "const", "volatile", "[signed]", "[unsigned]", "[char]", "[short]", "[long]", "[long long]", - "[typdef]", "[structof]", "[unionof]", "[enum]", + "[typedef]", "[structof]", "[unionof]", "[enum]", "[typeof]", "[attribute]", "inline", "[addressable]", "[nocast]", "[noderef]", "[accessed]", "[toplevel]", "[label]", "[assigned]", "[type]", "[safe]", |