fax_rx_fillin() return value fixed

This commit is contained in:
Steve Underwood 2010-06-07 22:33:14 +08:00
parent 73d9d56f6f
commit 803597956a
1 changed files with 1 additions and 1 deletions

View File

@ -324,7 +324,7 @@ SPAN_DECLARE(int) fax_rx_fillin(fax_state_t *s, int len)
/* Call the fillin function of the current modem (if there is one). */ /* Call the fillin function of the current modem (if there is one). */
s->modems.rx_fillin_handler(s->modems.rx_user_data, len); s->modems.rx_fillin_handler(s->modems.rx_user_data, len);
t30_timer_update(&s->t30, len); t30_timer_update(&s->t30, len);
return len; return 0;
} }
/*- End of function --------------------------------------------------------*/ /*- End of function --------------------------------------------------------*/