From 85a97c933fe50a04e34c5bdf4c6fc471e0b3ad6f Mon Sep 17 00:00:00 2001 From: Ian Barwick Date: Fri, 15 Feb 2019 19:30:45 +0900 Subject: [PATCH] Handle unhandled NodeStatus in switch statement --- dbutils.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/dbutils.c b/dbutils.c index c1242e4f..7235f615 100644 --- a/dbutils.c +++ b/dbutils.c @@ -5957,6 +5957,8 @@ print_node_status(NodeStatus node_status) return "DOWN"; case NODE_STATUS_UNCLEAN_SHUTDOWN: return "UNCLEAN_SHUTDOWN"; + case NODE_STATUS_REJECTED: + return "REJECTED"; } return "UNIDENTIFIED_STATUS";