diff options
author | Holger Hans Peter Freyther <zecke@selfish.org> | 2010-11-19 19:20:46 +0100 |
---|---|---|
committer | Holger Hans Peter Freyther <zecke@selfish.org> | 2010-11-19 19:21:42 +0100 |
commit | 121f358de0afdf162bc8e90605098860f65c994c (patch) | |
tree | de5fade7fb223c6633c08209c849383060164ef7 /src | |
parent | fe851ffc57c06ba03633caf6abcb5521526656ae (diff) |
utils: Fix typo. It is ascii.
Diffstat (limited to 'src')
-rw-r--r-- | src/utils.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/utils.c b/src/utils.c index 21558857..405039f6 100644 --- a/src/utils.c +++ b/src/utils.c @@ -43,7 +43,7 @@ char bcd2char(uint8_t bcd) return 'A' + (bcd - 0xa); } -/* only works for numbers in ascci */ +/* only works for numbers in ascii */ uint8_t char2bcd(char c) { return c - 0x30; |