100l, remove a pointless opt = NULL assignment that made print_int crash since r28794

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28803 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
reimar 2009-03-03 18:12:03 +00:00
parent fffc93fd94
commit 2e1f8e3670
1 changed files with 0 additions and 1 deletions

View File

@ -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));