shithub: opusfile

Download patch

ref: a3ce13a4f57995c576c46751f8d2332fe05f3e20
parent: 8ef38303e34d338a4e3b2e821b8a9f0f1ba47c51
author: Timothy B. Terriberry <tterribe@xiph.org>
date: Sun Jun 19 04:37:09 EDT 2016

Minor comment typo fixes.

--- a/src/http.c
+++ b/src/http.c
@@ -231,7 +231,7 @@
 #   define POLLRDBAND (0x0200)
 /*There is data to read.*/
 #   define POLLIN     (POLLRDNORM|POLLRDBAND)
-/* There is urgent data to read.*/
+/*There is urgent data to read.*/
 #   define POLLPRI    (0x0400)
 /*Equivalent to POLLOUT.*/
 #   define POLLWRNORM (0x0010)
@@ -894,7 +894,7 @@
 /*Close the connection and move it to the free list.
   _stream:     The stream containing the free list.
   _conn:       The connection to close.
-  _penxt:      The linked-list pointer currently pointing to this connection.
+  _pnext:      The linked-list pointer currently pointing to this connection.
   _gracefully: Whether or not to shut down cleanly.*/
 static void op_http_conn_close(OpusHTTPStream *_stream,OpusHTTPConn *_conn,
  OpusHTTPConn **_pnext,int _gracefully){