From 4526f9ad9852a680fd93d1405f813c11054336bc Mon Sep 17 00:00:00 2001 From: Daniel Richard G Date: Thu, 2 Aug 2012 19:37:23 +0200 Subject: [PATCH] dss.c: Remove redundant const. hook_status_description[] had a redundant const keyword, per GCC. --- dss.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dss.c b/dss.c index 968ba59..b18be4d 100644 --- a/dss.c +++ b/dss.c @@ -64,7 +64,7 @@ enum hook_status snapshot_removal_status; DEFINE_DSS_ERRLIST; -static const char const *hook_status_description[] = {HOOK_STATUS_ARRAY}; +static const char *hook_status_description[] = {HOOK_STATUS_ARRAY}; /* may be called with ds == NULL. */ static int disk_space_low(struct disk_space *ds) -- 2.39.2