fp-print: Return NULL on error

not really different from FALSE, but still..
This commit is contained in:
Marco Trevisan (Treviño) 2020-12-09 02:01:23 +01:00 committed by Benjamin Berg
parent 6ca8441df9
commit fb23f8690f

View file

@ -878,5 +878,5 @@ invalid_format:
*error = g_error_new_literal (G_IO_ERROR,
G_IO_ERROR_INVALID_DATA,
"Data could not be parsed");
return FALSE;
return NULL;
}