From: Ben Pfaff Date: Mon, 4 Aug 2008 21:18:36 +0000 (-0700) Subject: Fix typo in comment. X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0b8dc43d6dbe62f13b5556063d251b478731340b;p=openvswitch Fix typo in comment. --- diff --git a/lib/buffer.c b/lib/buffer.c index 2014248d..3dfd41a2 100644 --- a/lib/buffer.c +++ b/lib/buffer.c @@ -213,7 +213,7 @@ buffer_push(struct buffer *b, const void *p, size_t size) } /* If 'b' contains at least 'offset + size' bytes of data, returns a pointer to - * byte 'offset'. Otherwise, returns a null pointers. */ + * byte 'offset'. Otherwise, returns a null pointer. */ void * buffer_at(const struct buffer *b, size_t offset, size_t size) {