From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from userp2120.oracle.com ([156.151.31.85]:53178 "EHLO userp2120.oracle.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726068AbeK1KPS (ORCPT ); Wed, 28 Nov 2018 05:15:18 -0500 Date: Tue, 27 Nov 2018 15:15:45 -0800 From: "Darrick J. Wong" Subject: [PATCH 7/6] xfs_db: add missing string name for DBM_COWDATA Message-ID: <20181127231545.GA8125@magnolia> References: <154181071499.3727.3910572718199592407.stgit@magnolia> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <154181071499.3727.3910572718199592407.stgit@magnolia> Sender: linux-xfs-owner@vger.kernel.org List-ID: List-Id: xfs To: Eric Sandeen Cc: linux-xfs@vger.kernel.org From: Darrick J. Wong In db/check.c, typename[] is supposed to have strings for every DBM_ type, but we forgot one. Add it now. Signed-off-by: Darrick J. Wong --- db/check.c | 1 + 1 file changed, 1 insertion(+) diff --git a/db/check.c b/db/check.c index 352aab3f..f5b5e845 100644 --- a/db/check.c +++ b/db/check.c @@ -164,6 +164,7 @@ static const char *typename[] = { "btrmap", "btrefcnt", "rldata", + "cowdata", NULL }; static int verbose;