summaryrefslogtreecommitdiff
path: root/src/udev
diff options
context:
space:
mode:
authorDaniel Mack <github@zonque.org>2015-07-24 14:01:10 +0200
committerDaniel Mack <github@zonque.org>2015-07-24 14:01:10 +0200
commit6cb22db3307d09803cd946763d9fbd60ea5b6664 (patch)
treeaff4404919ac843c97b611102a85ab4858a2be68 /src/udev
parent95cdf5e3a938ac54d7e9c31276a5acf08347fa9f (diff)
parent45d9a3041404b6c6a1fb931cf7c1d38e5085e0b3 (diff)
Merge pull request #711 from zonque/const
tree-wide: do not use _cleanup_free_ on const pointers
Diffstat (limited to 'src/udev')
-rw-r--r--src/udev/udev-builtin-hwdb.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/udev/udev-builtin-hwdb.c b/src/udev/udev-builtin-hwdb.c
index b656204c46..72109d93d2 100644
--- a/src/udev/udev-builtin-hwdb.c
+++ b/src/udev/udev-builtin-hwdb.c
@@ -33,7 +33,7 @@ static sd_hwdb *hwdb;
int udev_builtin_hwdb_lookup(struct udev_device *dev,
const char *prefix, const char *modalias,
const char *filter, bool test) {
- _cleanup_free_ const char *lookup = NULL;
+ _cleanup_free_ char *lookup = NULL;
const char *key, *value;
int n = 0;