| commit ae717baf15fb4d30749ada3948d9445892bac239 |
| Author: Khem Raj <email address hidden> |
| Date: Sat May 20 14:28:46 2017 -0700 |
| |
| tc: include stdint.h explicitly for UINT16_MAX |
| |
| Fixes |
| | tc_core.c:190:29: error: 'UINT16_MAX' undeclared (first use in this function); did you mean '__INT16_MAX__'? |
| | if ((sz >> s->size_log) > UINT16_MAX) { |
| | ^~~~~~~~~~ |
| |
| Signed-off-by: Khem Raj <email address hidden> |
| |
| diff --git a/tc/tc_core.c b/tc/tc_core.c |
| index 7bbe0d73..821b741b 100644 |
| --- a/tc/tc_core.c |
| +++ b/tc/tc_core.c |
| @@ -12,6 +12,7 @@ |
| |
| #include <stdio.h> |
| #include <stdlib.h> |
| +#include <stdint.h> |
| #include <unistd.h> |
| #include <syslog.h> |
| #include <fcntl.h> |