Fix Windows build error in gnc_html_webkit1.c

load_to_stream requires a return value for the Pre-condition Assertion
This commit is contained in:
Robert Fewell 2024-09-03 13:59:38 +01:00
parent 616ebf0ca7
commit 4f0862ba55

View File

@ -474,7 +474,7 @@ load_to_stream( GncHtmlWebkit* self, URLType type,
DEBUG( "type %s, location %s, label %s", type ? type : "(null)",
location ? location : "(null)", label ? label : "(null)");
g_return_if_fail( self != NULL );
g_return_val_if_fail( self != NULL, FALSE );
if ( gnc_html_stream_handlers != NULL )
{