From 848383ac8239140ff6ef43c516c1cf322c41bec1 Mon Sep 17 00:00:00 2001 From: Alexandre Julliard Date: Fri, 29 Feb 2008 20:55:42 +0100 Subject: [PATCH] msi/tests: Replace a printf() by a trace(). --- dlls/msi/tests/automation.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/msi/tests/automation.c b/dlls/msi/tests/automation.c index 358d1bc97eb..09d1279c310 100644 --- a/dlls/msi/tests/automation.c +++ b/dlls/msi/tests/automation.c @@ -272,7 +272,7 @@ static void create_database(const CHAR *name, const msi_table *tables, int num_t write_file(table->filename, table->data, (table->size - 1) * sizeof(char)); - printf("table->filename: %s\n", table->filename); + trace("table->filename: %s\n", table->filename); r = MsiDatabaseImportA(db, CURR_DIR, table->filename); ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %u\n", r);