diff options
author | Lennart Poettering <lennart@poettering.net> | 2015-02-13 15:05:34 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2015-02-13 15:49:51 +0100 |
commit | d27efd93841a2ac2127fd53321368cc3f975c564 (patch) | |
tree | bef2a28458a69f8de9630736e2df2f626774f172 /src/bus-proxyd/proxy.h | |
parent | 403193f54b6ff0d3e822d56d7144cf996a596146 (diff) |
bus-proxy: we don't pointlessly abbreviate function names
It's fine to abbreviate local variables, but it's not OK to abbreviate
function names needlessly. This is not an excercise in writing
unreadable code.
Diffstat (limited to 'src/bus-proxyd/proxy.h')
-rw-r--r-- | src/bus-proxyd/proxy.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bus-proxyd/proxy.h b/src/bus-proxyd/proxy.h index 21c34f1d38..913d47071b 100644 --- a/src/bus-proxyd/proxy.h +++ b/src/bus-proxyd/proxy.h @@ -34,7 +34,7 @@ struct Proxy { int local_in; int local_out; - sd_bus *dest_bus; + sd_bus *destination_bus; Set *owned_names; SharedPolicy *policy; |