summaryrefslogtreecommitdiffstats
path: root/usr.sbin
diff options
context:
space:
mode:
authordim <dim@FreeBSD.org>2015-01-28 22:22:49 +0000
committerdim <dim@FreeBSD.org>2015-01-28 22:22:49 +0000
commitf7310af2cc0ef7e605de1c75f2a0ad8d6a1eddfb (patch)
tree7e733d21ac06c3a821aa070c19536a052fe35e85 /usr.sbin
parent323b7d583ce50019870d293b4a4438a20ef4070f (diff)
downloadFreeBSD-src-f7310af2cc0ef7e605de1c75f2a0ad8d6a1eddfb.zip
FreeBSD-src-f7310af2cc0ef7e605de1c75f2a0ad8d6a1eddfb.tar.gz
Fix the following -Wcast-qual warnings in usr.sbin/sa/db.c:
usr.sbin/sa/db.c:82:20: error: cast from 'char const (*)[9]' to 'void *' drops const qualifier [-Werror,-Wcast-qual] key.data = (void*)&VERSION_KEY; ^ usr.sbin/sa/db.c:178:20: error: cast from 'char const (*)[9]' to 'void *' drops const qualifier [-Werror,-Wcast-qual] key.data = (void*)&VERSION_KEY; ^ Replace the VERSION_KEY define with a writable char array, so no const qualifier needs to be dropped anymore. Submitted by: rdivacky
Diffstat (limited to 'usr.sbin')
-rw-r--r--usr.sbin/sa/db.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.sbin/sa/db.c b/usr.sbin/sa/db.c
index 557f406..6634e54 100644
--- a/usr.sbin/sa/db.c
+++ b/usr.sbin/sa/db.c
@@ -44,7 +44,7 @@ __FBSDID("$FreeBSD$");
#include "extern.h"
/* Key used to store the version of the database data elements. */
-#define VERSION_KEY "\0VERSION"
+static char VERSION_KEY[] = "\0VERSION";
/*
* Create the in-memory database, *mdb.
OpenPOWER on IntegriCloud