diff options
author | Lennart Poettering <lennart@poettering.net> | 2013-03-25 02:30:32 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2013-03-25 02:33:35 +0100 |
commit | 2fd9ae2e9bd585312e15f8383036caee704822fb (patch) | |
tree | c37a71c351e183c47539e54eccd59548e5e2dc51 /src/shared/strv.c | |
parent | 021a1e78d7621bcd844a9bf22efca88960a8e28b (diff) |
bus: implement 'unixexec:' protocol
Diffstat (limited to 'src/shared/strv.c')
-rw-r--r-- | src/shared/strv.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/shared/strv.c b/src/shared/strv.c index e57e0ee7bf..a5ce7e9593 100644 --- a/src/shared/strv.c +++ b/src/shared/strv.c @@ -64,7 +64,7 @@ void strv_free(char **l) { free(l); } -char **strv_copy(char **l) { +char **strv_copy(char * const *l) { char **r, **k; k = r = new(char*, strv_length(l) + 1); @@ -84,7 +84,7 @@ char **strv_copy(char **l) { return r; } -unsigned strv_length(char **l) { +unsigned strv_length(char * const *l) { unsigned n = 0; if (!l) |