diff options
author | Lennart Poettering <lennart@poettering.net> | 2013-11-08 18:11:09 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2013-11-08 18:12:45 +0100 |
commit | 9588bc32096fc8342bfd8b989689717186d7d86e (patch) | |
tree | 774cf93f0544add18f8307714062cc18f97838da /src/libsystemd-bus/bus-bloom.c | |
parent | f842cd74eacc2960ac849766eb786059317415ee (diff) |
Remove dead code and unexport some calls
"make check-api-unused" informs us about code that is not used anymore
or that is exported but only used internally. Fix these all over the
place.
Diffstat (limited to 'src/libsystemd-bus/bus-bloom.c')
-rw-r--r-- | src/libsystemd-bus/bus-bloom.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libsystemd-bus/bus-bloom.c b/src/libsystemd-bus/bus-bloom.c index 04bee8581e..c3ad9f6385 100644 --- a/src/libsystemd-bus/bus-bloom.c +++ b/src/libsystemd-bus/bus-bloom.c @@ -28,7 +28,7 @@ static inline void set_bit(uint64_t filter[], unsigned b) { filter[b >> 6] |= 1ULL << (b & 63); } -void bloom_add_data(uint64_t filter[BLOOM_SIZE/8], const void *data, size_t n) { +static void bloom_add_data(uint64_t filter[BLOOM_SIZE/8], const void *data, size_t n) { uint16_t hash[8]; unsigned k = 0; |