change buffer data type in hexdump logging to unsigned char

This commit is contained in:
Andreas Schultz
2016-02-29 15:30:19 +01:00
parent e4a5abba65
commit a85f07f18a
2 changed files with 2 additions and 2 deletions

View File

@ -137,7 +137,7 @@ void capwap_logging_printf(int level, const char* format, ...) {
va_end(args);
}
void capwap_logging_hexdump(int level, const char *title, const uint8_t *data, size_t len)
void capwap_logging_hexdump(int level, const char *title, const unsigned char *data, size_t len)
{
char prefix[256];