aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorHarald Welte <laforge@osmocom.org>2022-01-09 12:00:03 +0100
committerHarald Welte <laforge@osmocom.org>2022-01-09 12:04:22 +0100
commite6fb890b98e69f6b0bba4d12f2a3cf76aa20acf4 (patch)
tree29027cbbf3df6907f32abc60a34f4c60f4ed757e /include
parent7d6166a0e3996baa60391a89a780499d9cb07783 (diff)
log_taget_find() should use enum log_target_type, not int
This has shown up in -Wsign-compare Change-Id: I2f5ba81aa0328db7db29f49f26de4cea3f522789
Diffstat (limited to 'include')
-rw-r--r--include/osmocom/core/logging.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/osmocom/core/logging.h b/include/osmocom/core/logging.h
index 79077340..4a34c7d6 100644
--- a/include/osmocom/core/logging.h
+++ b/include/osmocom/core/logging.h
@@ -431,7 +431,7 @@ int log_targets_reopen(void);
void log_add_target(struct log_target *target);
void log_del_target(struct log_target *target);
-struct log_target *log_target_find(int type, const char *fname);
+struct log_target *log_target_find(enum log_target_type type, const char *fname);
void log_enable_multithread(void);