From 5837a255ad6b50094190b49a16e284a1a50f2922 Mon Sep 17 00:00:00 2001 From: Colin Patrick McCabe Date: Wed, 30 Mar 2011 15:44:46 -0700 Subject: [PATCH] config: fix use of uint64_t* as uint32_t* Signed-off-by: Colin McCabe --- src/common/config.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/common/config.cc b/src/common/config.cc index bc8da86883372..a612242bfdd3d 100644 --- a/src/common/config.cc +++ b/src/common/config.cc @@ -160,9 +160,9 @@ struct config_option config_optionsp[] = { OPTION(ms_max_backoff, 0, OPT_DOUBLE, 15.0), OPTION(ms_nocrc, 0, OPT_BOOL, false), OPTION(ms_die_on_bad_msg, 0, OPT_BOOL, false), - OPTION(ms_dispatch_throttle_bytes, 0, OPT_INT, 100 << 20), + OPTION(ms_dispatch_throttle_bytes, 0, OPT_LONGLONG, 100 << 20), OPTION(ms_bind_ipv6, 0, OPT_BOOL, false), - OPTION(ms_rwthread_stack_bytes, 0, OPT_INT, 1024 << 10), + OPTION(ms_rwthread_stack_bytes, 0, OPT_LONGLONG, 1024 << 10), OPTION(ms_tcp_read_timeout, 0, OPT_LONGLONG, 900), OPTION(ms_inject_socket_failures, 0, OPT_LONGLONG, 0), OPTION(mon_data, 0, OPT_STR, 0), -- 2.39.5