From fb23f8690fb7145e3be0eb1ea8ebc8e3565344c3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marco=20Trevisan=20=28Trevi=C3=B1o=29?= Date: Wed, 9 Dec 2020 02:01:23 +0100 Subject: [PATCH] fp-print: Return NULL on error not really different from FALSE, but still.. --- libfprint/fp-print.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libfprint/fp-print.c b/libfprint/fp-print.c index 70775c93..a4e8350c 100644 --- a/libfprint/fp-print.c +++ b/libfprint/fp-print.c @@ -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; }