]> git.tuebingen.mpg.de Git - dss.git/commitdiff
dss.c: Remove redundant const.
authorDaniel Richard G <skunk@iSKUNK.ORG>
Thu, 2 Aug 2012 17:37:23 +0000 (19:37 +0200)
committerAndre Noll <maan@systemlinux.org>
Sat, 4 Aug 2012 11:07:27 +0000 (13:07 +0200)
hook_status_description[] had a redundant const keyword, per GCC.

dss.c

diff --git a/dss.c b/dss.c
index 968ba597d74eb4fbcd03804f7e0cdd3fa4cab841..b18be4d190f2faa29f5c0199dc0be65997a68b7e 100644 (file)
--- 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)