summaryrefslogtreecommitdiff
path: root/lib/thread.c
diff options
context:
space:
mode:
authorLou Berger <lberger@labn.net>2018-03-28 10:30:54 -0400
committerGitHub <noreply@github.com>2018-03-28 10:30:54 -0400
commit615e608d76bd3e1acf1769c914142210ac88e3f7 (patch)
tree1159398cc86aa18901a73480303fb52e09b1f9cc /lib/thread.c
parent79968d2e0bb21485f47934fe4110ab33da8803c7 (diff)
parentd7c0a89a3a5697783a6dd89333ab660074790890 (diff)
Merge pull request #1854 from qlyoung/integer-standards-compliance
*: use C99 standard fixed-width integer types
Diffstat (limited to 'lib/thread.c')
-rw-r--r--lib/thread.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/thread.c b/lib/thread.c
index d26be1541f..f3129e39e8 100644
--- a/lib/thread.c
+++ b/lib/thread.c
@@ -621,7 +621,7 @@ struct timeval thread_timer_remain(struct thread *thread)
}
/* Get new thread. */
-static struct thread *thread_get(struct thread_master *m, u_char type,
+static struct thread *thread_get(struct thread_master *m, uint8_t type,
int (*func)(struct thread *), void *arg,
debugargdef)
{