@@ -81,7 +81,7 @@ global:
install_sublevel_end;
is_quote;
keyword_alloc;
- _log_bitfield_overflow;
+ log_bitfield_overflow__;
libmp_basename;
libmp_strlcat;
libmp_strlcpy;
@@ -354,7 +354,7 @@ struct bitfield *alloc_bitfield(unsigned int maxbit)
return bf;
}
-void _log_bitfield_overflow(const char *f, unsigned int bit, unsigned int len)
+void log_bitfield_overflow__(const char *f, unsigned int bit, unsigned int len)
{
condlog(0, "%s: bitfield overflow: %u >= %u", f, bit, len);
}
@@ -103,9 +103,9 @@ struct bitfield {
struct bitfield *alloc_bitfield(unsigned int maxbit);
-void _log_bitfield_overflow(const char *f, unsigned int bit, unsigned int len);
+void log_bitfield_overflow__(const char *f, unsigned int bit, unsigned int len);
#define log_bitfield_overflow(bit, len) \
- _log_bitfield_overflow(__func__, bit, len)
+ log_bitfield_overflow__(__func__, bit, len)
static inline bool is_bit_set_in_bitfield(unsigned int bit,
const struct bitfield *bf)
Signed-off-by: Martin Wilck <mwilck@suse.com> --- libmpathutil/libmpathutil.version | 2 +- libmpathutil/util.c | 2 +- libmpathutil/util.h | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-)