Skip to content

Commit 621e6b9

Browse files
committed
fixed the u_char type for MinGW which lacks it.
1 parent ab06dfe commit 621e6b9

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/rds_parser.h

+5
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,11 @@
1212
#include <stdint.h>
1313

1414

15+
#ifndef u_char
16+
#define u_char unsigned char
17+
#endif
18+
19+
1520
typedef struct {
1621
u_char *data;
1722
size_t len;

0 commit comments

Comments
 (0)