From 02cf41a486d64bc894986fe87c174bfe1b07fc9b Mon Sep 17 00:00:00 2001 From: Philipp Klaus Date: Tue, 23 Oct 2018 18:46:57 +0200 Subject: [PATCH] trbcmd: fix comment: buffer size is 4Mi uint32 words = 16MiB --- libtrbnet/trbcmd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libtrbnet/trbcmd.c b/libtrbnet/trbcmd.c index d4e376d..adc89f0 100644 --- a/libtrbnet/trbcmd.c +++ b/libtrbnet/trbcmd.c @@ -40,7 +40,7 @@ static int tcp_mode = 0; /* ---- User Buffer Size ------------------------------------------------ */ -static size_t BUFFER_SIZE = 4194304; /* 4MByte */ +static size_t BUFFER_SIZE = 4194304; /* 16MByte */ static uint32_t buffer[4194304]; /* ---- Error Handling -------------------------------------------------- */ -- 2.43.0