From cc431bfc4c19aac79d98546d4abae4e4ad35d500 Mon Sep 17 00:00:00 2001 From: Marc-André Lureau Date: Wed, 6 Feb 2013 14:12:11 +0100 Subject: Replace WARN with g_warning --- libmsi/string.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libmsi/string.c') diff --git a/libmsi/string.c b/libmsi/string.c index 9fdd5ff..29cbe91 100644 --- a/libmsi/string.c +++ b/libmsi/string.c @@ -570,13 +570,13 @@ unsigned msi_save_string_table( const string_table *st, LibmsiDatabase *db, unsi pool = msi_alloc( poolsize ); if( ! pool ) { - WARN("Failed to alloc pool %d bytes\n", poolsize ); + g_warning("Failed to alloc pool %d bytes\n", poolsize ); goto err; } data = msi_alloc( datasize ); if( ! data ) { - WARN("Failed to alloc data %d bytes\n", datasize ); + g_warning("Failed to alloc data %d bytes\n", datasize ); goto err; } -- cgit