From 520c5534c1adbc40862d88740290bfa0266f414a Mon Sep 17 00:00:00 2001 From: Themaister Date: Sun, 23 Feb 2014 11:13:05 +0100 Subject: [PATCH] Nit in comment. --- rewind.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rewind.c b/rewind.c index f4778cac03..f498972bf5 100644 --- a/rewind.c +++ b/rewind.c @@ -61,7 +61,7 @@ // The start of the buffer contains a size pointing to the end of the buffer; the end points to its start. // Wrapping is handled by returning to the start of the buffer if the compressed data could potentially hit the edge; // if the compressed data could potentially overwrite the tail pointer, the tail retreats until it can no longer collide. -// This means that on average, ~2*maxcompsize is unused at any given moment. +// This means that on average, ~2 * maxcompsize is unused at any given moment. // These are called very few constant times per frame, keep it as simple as possible. static inline void write_size_t(void *ptr, size_t val)