From 0d80dba26a2f3c204f6a7897c119bd0c1ca87988 Mon Sep 17 00:00:00 2001 From: Holger Hans Peter Freyther Date: Tue, 26 Nov 2013 21:01:04 +0100 Subject: rlc: Use sizeof() for the memset instead of ARRAY_SIZE In this case both will give the same result but it is better to use sizeof. But it is better to use the raw number of bytes instead of the number of elements. --- src/rlc.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/rlc.cpp b/src/rlc.cpp index f31670ea..d115f767 100644 --- a/src/rlc.cpp +++ b/src/rlc.cpp @@ -28,7 +28,7 @@ extern "C" { uint8_t *gprs_rlc_data::prepare(size_t block_data_len) { /* todo.. only set it once if it turns out to be a bottleneck */ - memset(block, 0x0, ARRAY_SIZE(block)); + memset(block, 0x0, sizeof(block)); memset(block, 0x2b, block_data_len); return block; -- cgit v1.2.3