diff --git a/m_option.c b/m_option.c index 71ad21651c..8504f25219 100644 --- a/m_option.c +++ b/m_option.c @@ -173,7 +173,6 @@ static int parse_int(const m_option_t* opt,const char *name, char *param, void* } static char* print_int(const m_option_t* opt, const void* val) { - opt = NULL; if (opt->type->size == sizeof(int64_t)) return dup_printf("%"PRId64, *(const int64_t *)val); return dup_printf("%d",VAL(val));