# HG changeset patch # User reimar # Date 1236103923 0 # Node ID d5e0b9e3cefc476b206639958cb24b31222e512e # Parent 8134ffd057d7105cb6fdb2cb3f8457c963a51c9e 100l, remove a pointless opt = NULL assignment that made print_int crash since r28794 diff -r 8134ffd057d7 -r d5e0b9e3cefc m_option.c --- a/m_option.c Tue Mar 03 16:17:11 2009 +0000 +++ b/m_option.c Tue Mar 03 18:12:03 2009 +0000 @@ -173,7 +173,6 @@ } 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));