diff options
author | Daniel Mack <github@zonque.org> | 2015-07-24 14:01:10 +0200 |
---|---|---|
committer | Daniel Mack <github@zonque.org> | 2015-07-24 14:01:10 +0200 |
commit | 6cb22db3307d09803cd946763d9fbd60ea5b6664 (patch) | |
tree | aff4404919ac843c97b611102a85ab4858a2be68 /src/import/pull-dkr.c | |
parent | 95cdf5e3a938ac54d7e9c31276a5acf08347fa9f (diff) | |
parent | 45d9a3041404b6c6a1fb931cf7c1d38e5085e0b3 (diff) |
Merge pull request #711 from zonque/const
tree-wide: do not use _cleanup_free_ on const pointers
Diffstat (limited to 'src/import/pull-dkr.c')
-rw-r--r-- | src/import/pull-dkr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/import/pull-dkr.c b/src/import/pull-dkr.c index 78e3184c42..67ca1ce8e4 100644 --- a/src/import/pull-dkr.c +++ b/src/import/pull-dkr.c @@ -793,7 +793,7 @@ static void dkr_pull_job_on_finished_v2(PullJob *j) { } else if (i->tags_job == j) { const char *url; - _cleanup_free_ const char *buf; + _cleanup_free_ char *buf; _cleanup_json_variant_unref_ JsonVariant *doc = NULL; JsonVariant *e = NULL; |