Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/cysignals/implementation.c
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ static inline void print_stderr(const char* s)
/* str should have enough space allocated */
static inline void ulong_to_str(unsigned long val, char *str, int base)
{
const char xdigits[16] = "0123456789abcdef";
const char xdigits[16] = {'0','1','2','3','4','5','6','7','8','9','a','b','c','d','e','f'};
Comment thread
cxzhong marked this conversation as resolved.
unsigned long aux;
int len;

Expand Down
Loading