From 6ef8aff105d9a9360e0c5ff275882610d3279d95 Mon Sep 17 00:00:00 2001 From: Yuan-Ru Lin Date: Thu, 2 Feb 2023 07:03:41 +0800 Subject: [PATCH] Add missing namespace before kOffsetP --- src/root.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/root.jl b/src/root.jl index a3f31aaa..a50005b1 100644 --- a/src/root.jl +++ b/src/root.jl @@ -290,7 +290,7 @@ end function _normalize_ftype(fType) # Taken from uproot4; thanks Jim ;) if Const.kOffsetL < fType < Const.kOffsetP - fType - kOffsetP + fType - Const.kOffsetP else fType end