diff options
author | Thorsten Horstmann <thorsten.horstmann@web.de> | 2015-02-24 20:45:07 +0800 |
---|---|---|
committer | Thorsten Horstmann <thorsten.horstmann@web.de> | 2015-02-24 20:45:07 +0800 |
commit | abeb9d64a398cb38348f95b8d93b888f4e726cd0 (patch) | |
tree | c9c208e361b134f34368731dbfb9710edb370999 /buffer.c | |
parent | fdb7ffa864dea8e1c9efe3532db08b1ccad484dc (diff) |
Some minor typo fixes, found by codespell.
Diffstat (limited to 'buffer.c')
-rw-r--r-- | buffer.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -127,7 +127,7 @@ void buf_setpos(buffer* buf, unsigned int pos) { buf->pos = pos; } -/* increment the postion by incr, increasing the buffer length if required */ +/* increment the position by incr, increasing the buffer length if required */ void buf_incrwritepos(buffer* buf, unsigned int incr) { if (incr > BUF_MAX_INCR || buf->pos + incr > buf->size) { dropbear_exit("Bad buf_incrwritepos"); |