diff options
| author | Stefan Weil <sw@weilnetz.de> | 2016-11-19 20:47:15 +0100 |
|---|---|---|
| committer | Michael Tokarev <mjt@tls.msk.ru> | 2017-01-24 23:26:52 +0300 |
| commit | 5bb8590d376094ea7d28fc54d7ab0c1f22906f03 (patch) | |
| tree | f40e48fd7e7b81e558ed5526307e6204b8a089cd /include/qemu/qht.h | |
| parent | 736a83fae4e00215537e91bffdde994ad08ec049 (diff) | |
| download | focaccia-qemu-5bb8590d376094ea7d28fc54d7ab0c1f22906f03.tar.gz focaccia-qemu-5bb8590d376094ea7d28fc54d7ab0c1f22906f03.zip | |
include: Fix typos found by codespell
Add also a missing parenthesis in a comment. Signed-off-by: Stefan Weil <sw@weilnetz.de> Acked-by: Alistair Francis <alistair.francis@xilinx.com> Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
Diffstat (limited to 'include/qemu/qht.h')
| -rw-r--r-- | include/qemu/qht.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/qemu/qht.h b/include/qemu/qht.h index 311139b85a..56c2c7784c 100644 --- a/include/qemu/qht.h +++ b/include/qemu/qht.h @@ -72,7 +72,7 @@ void qht_destroy(struct qht *ht); * In case of successful operation, smp_wmb() is implied before the pointer is * inserted into the hash table. * - * Returns true on sucess. + * Returns true on success. * Returns false if the @p-@hash pair already exists in the hash table. */ bool qht_insert(struct qht *ht, void *p, uint32_t hash); |