From: Daniel Richard G Date: Thu, 2 Aug 2012 17:37:23 +0000 (+0200) Subject: dss.c: Remove redundant const. X-Git-Tag: v0.1.5~12^2~8 X-Git-Url: http://git.tue.mpg.de/?a=commitdiff_plain;h=4526f9ad9852a680fd93d1405f813c11054336bc;p=dss.git dss.c: Remove redundant const. hook_status_description[] had a redundant const keyword, per GCC. --- 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)