aboutsummaryrefslogtreecommitdiff
path: root/src/string.c
diff options
context:
space:
mode:
authorStefan Weil <sw@weilnetz.de>2015-10-02 08:46:40 +0200
committerKevin O'Connor <kevin@koconnor.net>2015-10-09 13:34:28 -0400
commit6bcacf7d19b1dc7fcd99f55491e93514f1f19279 (patch)
tree6e7a14b3da4433ea6b1bada424f86938b6a928d0 /src/string.c
parent62de31b4feb5eacc4139f4d9fc28ae102921b4c7 (diff)
downloadseabios-6bcacf7d19b1dc7fcd99f55491e93514f1f19279.zip
seabios-6bcacf7d19b1dc7fcd99f55491e93514f1f19279.tar.gz
seabios-6bcacf7d19b1dc7fcd99f55491e93514f1f19279.tar.bz2
Fix typos found by codespell
Signed-off-by: Stefan Weil <sw@weilnetz.de> Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'src/string.c')
-rw-r--r--src/string.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/string.c b/src/string.c
index 2e4e437..adb8198 100644
--- a/src/string.c
+++ b/src/string.c
@@ -227,7 +227,7 @@ strtcpy(char *dest, const char *src, size_t len)
return dest;
}
-// locate first occurance of character c in the string s
+// locate first occurrence of character c in the string s
char *
strchr(const char *s, int c)
{