diff options
author | 2017-09-04 12:56:01 +0000 | |
---|---|---|
committer | 2017-09-04 12:56:01 +0000 | |
commit | b7b99cbe2de1144a5136f67f85c0ce929bf4bb55 (patch) | |
tree | 8d73578975ccefa7e5018ee7f95d14396aded8a7 | |
parent | Before mounting NFS, wait until mountd(8) has exported the directory. (diff) | |
download | wireguard-openbsd-b7b99cbe2de1144a5136f67f85c0ce929bf4bb55.tar.xz wireguard-openbsd-b7b99cbe2de1144a5136f67f85c0ce929bf4bb55.zip |
Fix typo in comment; ok mpi@
-rw-r--r-- | usr.bin/ctfconv/dw.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ctfconv/dw.c b/usr.bin/ctfconv/dw.c index cf93f0f2efa..cf015561186 100644 --- a/usr.bin/ctfconv/dw.c +++ b/usr.bin/ctfconv/dw.c @@ -1,4 +1,4 @@ -/* $OpenBSD: dw.c,v 1.2 2017/08/11 14:58:56 jasper Exp $ */ +/* $OpenBSD: dw.c,v 1.3 2017/09/04 12:56:01 anton Exp $ */ /* * Copyright (c) 2016 Martin Pieuchot @@ -570,7 +570,7 @@ dw_cu_parse(struct dwbuf *info, struct dwbuf *abbrev, size_t seglen, if (length >= 0xfffffff0 || length > info->len) return EOVERFLOW; - /* Offset of the next Compule Unit. */ + /* Offset of the next Compile Unit. */ nextoff = segoff + length + sizeof(uint32_t); if (dw_read_buf(info, &dwbuf, length)) |