pfctl(8): Fix a typo in a source code comment

- s/bufer/buffer/

MFC after:	3 days
This commit is contained in:
Gordon Bergling 2022-07-16 13:48:30 +02:00
parent e4a203234a
commit c9856c4ffb

View File

@ -1227,7 +1227,7 @@ char *
rate2str(double rate)
{
char *buf;
static char r2sbuf[R2S_BUFS][RATESTR_MAX]; /* ring bufer */
static char r2sbuf[R2S_BUFS][RATESTR_MAX]; /* ring buffer */
static int idx = 0;
int i;
static const char unit[] = " KMG";