diff options
Diffstat (limited to 'libmsi/string.c')
| -rw-r--r-- | libmsi/string.c | 4 |
1 files changed, 2 insertions, 2 deletions
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; } |
