From 8002a51b82f703ce6dba5a429612e30bedb8b575 Mon Sep 17 00:00:00 2001 From: nikswamy Date: Fri, 30 Dec 2022 15:25:01 -0800 Subject: [PATCH] tiny fix to qprofdiff (#6497) --- contrib/qprofdiff/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/qprofdiff/main.cpp b/contrib/qprofdiff/main.cpp index 17b76081b..7833faa27 100644 --- a/contrib/qprofdiff/main.cpp +++ b/contrib/qprofdiff/main.cpp @@ -65,7 +65,7 @@ int parse(string const & filename, map & data) { inx != string::npos; inx = line.find(" : ", from)) { tokens[ti] = trim(line.substr(from, inx-from)); - from = inx+1; + from = inx+3; //3 is the length of " : " ti++; } if (from != line.length() && ti < 4)