Module: wine Branch: refs/heads/master Commit: 5842af1b951d5deb552130ea27da95e8f816a44e URL: http://source.winehq.org/git/?p=wine.git;a=commit;h=5842af1b951d5deb552130ea...
Author: James Hawkins truiken@gmail.com Date: Wed Jul 26 14:52:56 2006 -0700
msi: Fix a typo.
---
dlls/msi/table.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/msi/table.c b/dlls/msi/table.c index 810cbb8..39dfc4e 100644 --- a/dlls/msi/table.c +++ b/dlls/msi/table.c @@ -477,7 +477,7 @@ static MSITABLE *read_table_from_storage goto err;
/* transpose all the data */ - TRACE("Transposing data from %d columns\n", t->row_count ); + TRACE("Transposing data from %d rows\n", t->row_count ); for( i=0; i<t->row_count; i++ ) { t->data[i] = msi_alloc( row_size );