diff options
author | nicm <nicm> | 2017-01-24 20:15:32 +0000 |
---|---|---|
committer | nicm <nicm> | 2017-01-24 20:15:32 +0000 |
commit | 4b2821ff9861b193226442e9bc5507a9ddffa827 (patch) | |
tree | 23450181f40165bdae3648353e15ef064134c27d /tmux.h | |
parent | b77dd75b5717d3b95a97c7b60c9e054338d7d85e (diff) | |
download | rtmux-4b2821ff9861b193226442e9bc5507a9ddffa827.tar.gz rtmux-4b2821ff9861b193226442e9bc5507a9ddffa827.tar.bz2 rtmux-4b2821ff9861b193226442e9bc5507a9ddffa827.zip |
Make update-environment an array as well.
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1669,7 +1669,7 @@ void printflike(3, 4) environ_set(struct environ *, const char *, const char *, void environ_clear(struct environ *, const char *); void environ_put(struct environ *, const char *); void environ_unset(struct environ *, const char *); -void environ_update(const char *, struct environ *, struct environ *); +void environ_update(struct options *, struct environ *, struct environ *); void environ_push(struct environ *); void environ_log(struct environ *, const char *); |