From dd0c5e03a374aa00f8a6029ebbd91518d0fb19b0 Mon Sep 17 00:00:00 2001 From: Chen Wang Date: Mon, 15 Jul 2024 14:41:42 -0700 Subject: [PATCH] Minor warning fix Signed-off-by: Chen Wang --- tools/recorder2timeline.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tools/recorder2timeline.cpp b/tools/recorder2timeline.cpp index 5546f37..df24748 100644 --- a/tools/recorder2timeline.cpp +++ b/tools/recorder2timeline.cpp @@ -32,6 +32,8 @@ static const char* type_name(int type) { return "HDF5"; case RECORDER_FTRACE: return "USER"; + default: + return "UNKNOWN"; } }