From: Philipp Klaus Date: Tue, 23 Oct 2018 16:46:57 +0000 (+0200) Subject: trbcmd: fix comment: buffer size is 4Mi uint32 words = 16MiB X-Git-Url: https://jspc29.x-matter.uni-frankfurt.de/git/?a=commitdiff_plain;h=02cf41a486d64bc894986fe87c174bfe1b07fc9b;p=trbnettools.git trbcmd: fix comment: buffer size is 4Mi uint32 words = 16MiB --- 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 -------------------------------------------------- */