From e9ff26fe5b6982db2d3704a8a366077f41b0484d Mon Sep 17 00:00:00 2001 From: Pavel Siska Date: Mon, 30 Sep 2024 16:47:42 +0200 Subject: [PATCH] unirec++ - fix checkDataTypeCompatibility for non-array values --- unirec/include/unirec++/unirecRecord.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/unirec/include/unirec++/unirecRecord.hpp b/unirec/include/unirec++/unirecRecord.hpp index d44ee687..857e89d9 100644 --- a/unirec/include/unirec++/unirecRecord.hpp +++ b/unirec/include/unirec++/unirecRecord.hpp @@ -339,7 +339,7 @@ class UnirecRecord { if (ur_is_array(fieldID)) { expectedType = getExpectedUnirecType(); } else { - expectedType = getExpectedUnirecType(); + expectedType = getExpectedUnirecType(); } if (expectedType != ur_get_type(fieldID)) {