diff options
author | Anthony G. Basile <blueness@gentoo.org> | 2013-06-06 10:39:11 -0400 |
---|---|---|
committer | Anthony G. Basile <blueness@gentoo.org> | 2013-06-06 10:39:11 -0400 |
commit | afe76217f98b2fcb6d6e80bd732ba221c9bf7ae4 (patch) | |
tree | c906a9c99044aab15255d58798a1c570848cfa9a /src/libudev/log.c | |
parent | 6f8f3edfe8dd70e24105d889f664ff033eb0555e (diff) |
Round 4 of remove unused functions from src/libudev/{hashmap,log,set,util}.c
We removed the following functions:
hashmap_merge
path_is_read_only_fs
set_free_free
set_free_freep
readlink_malloc
hexchar
unhexchar
octchar
unoctchar
format_timespan
Signed-off-by: Anthony G. Basile <blueness@gentoo.org>
Diffstat (limited to 'src/libudev/log.c')
-rw-r--r-- | src/libudev/log.c | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/src/libudev/log.c b/src/libudev/log.c index ba85494c4e..c06f05b799 100644 --- a/src/libudev/log.c +++ b/src/libudev/log.c @@ -576,23 +576,6 @@ static int log_dispatch( return r; } -int log_dump_internal( - int level, - const char*file, - int line, - const char *func, - char *buffer) { - - PROTECT_ERRNO; - - /* This modifies the buffer... */ - - if (_likely_(LOG_PRI(level) > log_max_level)) - return 0; - - return log_dispatch(level, file, line, func, NULL, NULL, buffer); -} - int log_metav( int level, const char*file, |