coroparse: Implement handler for str_to_ull error
Previously atoi_error handler was used for both safe_atoq and str_to_ull
errors. This is wrong, because str_to_ull doesn't define val_type so
safe_atoq_range assert either failed or error message contained invalid
integer ranges.
Example of such file is
totem { version: 2 config_version: c42 ...
which results in abort.
Solution is to split safe_atoq and str_to_ull error handling, first one
displaying range and second one doesn't.
Signed-off-by: Jan Friesse <jfriesse@redhat.com>