diff options
| author | Marc-André Lureau <marcandre.lureau@gmail.com> | 2013-02-06 14:12:11 +0100 |
|---|---|---|
| committer | Marc-André Lureau <marcandre.lureau@gmail.com> | 2013-02-07 00:00:31 +0100 |
| commit | cc431bfc4c19aac79d98546d4abae4e4ad35d500 (patch) | |
| tree | 21504b3970ea7fa70ba82c3a05563c2e534c4aee /libmsi/string.c | |
| parent | a177ebf63ebacaccfa59c208cfe7c634db644e22 (diff) | |
| download | msitools-cc431bfc4c19aac79d98546d4abae4e4ad35d500.tar.gz msitools-cc431bfc4c19aac79d98546d4abae4e4ad35d500.tar.xz msitools-cc431bfc4c19aac79d98546d4abae4e4ad35d500.zip | |
Replace WARN with g_warning
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; } |
