diff options
author | Paul Vinciguerra <pvinci@vinciconsulting.com> | 2020-05-29 23:03:06 -0400 |
---|---|---|
committer | Damjan Marion <dmarion@me.com> | 2020-12-04 22:48:07 +0000 |
commit | 6223766f96c469e42d6855c4b5933e7a9e06d621 (patch) | |
tree | ae12a375cc10d2a927c2840aae88f3962c74df92 /extras/libmemif/examples/icmp_responder | |
parent | 2b29c9494e836a4f223c847c92eada9dc31e00a7 (diff) |
libmemif: clean up typos
Type: style
Change-Id: I0d25d922312dfd60a665916cf47c3d2faa29ea49
Signed-off-by: Paul Vinciguerra <pvinci@vinciconsulting.com>
Diffstat (limited to 'extras/libmemif/examples/icmp_responder')
-rw-r--r-- | extras/libmemif/examples/icmp_responder/main.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/extras/libmemif/examples/icmp_responder/main.c b/extras/libmemif/examples/icmp_responder/main.c index df94da34478..517512340e0 100644 --- a/extras/libmemif/examples/icmp_responder/main.c +++ b/extras/libmemif/examples/icmp_responder/main.c @@ -193,7 +193,7 @@ int icmpr_memif_delete () { int err; - /* disconenct then delete memif connection */ + /* disconnect then delete memif connection */ err = memif_delete (&(&memif_connection)->conn); if (err != MEMIF_ERR_SUCCESS) INFO ("memif_delete: %s", memif_strerror (err)); @@ -224,7 +224,7 @@ icmpr_buffer_alloc (long n, uint16_t qid) memif_connection_t *c = &memif_connection; int err; uint16_t r; - /* set data pointer to shared memory and set buffer_len to shared mmeory buffer len */ + /* set data pointer to shared memory and set buffer_len to shared memory buffer len */ err = memif_buffer_alloc (c->conn, qid, c->tx_bufs, n, &r, 0); if (err != MEMIF_ERR_SUCCESS) { |