diff options
author | Holger Hans Peter Freyther <holger@moiji-mobile.com> | 2016-02-29 14:41:12 +0100 |
---|---|---|
committer | Holger Hans Peter Freyther <holger@moiji-mobile.com> | 2016-02-29 14:41:12 +0100 |
commit | ed0ce47fa9ca78e240d635f3781ad9820b18b97e (patch) | |
tree | 897b48ad89e280436625c28745a626353489cd97 | |
parent | 5dd3f1dd67a41fb46f2fcb6b58068525cda0a8a0 (diff) |
logging: Remove unused variable after recent changes
The variable is not used anymore as the decision is done in the
newly added check_log_to_target method.
-rw-r--r-- | src/logging.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/logging.c b/src/logging.c index 1c9c6634..35746e9b 100644 --- a/src/logging.c +++ b/src/logging.c @@ -361,7 +361,6 @@ void osmo_vlogp(int subsys, int level, const char *file, int line, subsys = map_subsys(subsys); llist_for_each_entry(tar, &osmo_log_target_list, entry) { - int output = 0; va_list bp; if (!check_log_to_target(tar, subsys, level)) |