summaryrefslogtreecommitdiffstats
path: root/libmsi/insert.c
diff options
context:
space:
mode:
Diffstat (limited to 'libmsi/insert.c')
-rw-r--r--libmsi/insert.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/libmsi/insert.c b/libmsi/insert.c
index 9687f8a..bb25729 100644
--- a/libmsi/insert.c
+++ b/libmsi/insert.c
@@ -107,7 +107,8 @@ err:
*/
static BOOL msi_columns_in_order(MSIINSERTVIEW *iv, UINT col_count)
{
- LPCWSTR a, b;
+ LPCWSTR a;
+ LPCWSTR b;
UINT i;
for (i = 1; i <= col_count; i++)
@@ -128,7 +129,8 @@ static UINT msi_arrange_record(MSIINSERTVIEW *iv, MSIRECORD **values)
MSIRECORD *padded;
UINT col_count, val_count;
UINT r, i, colidx;
- LPCWSTR a, b;
+ LPCWSTR a;
+ LPCWSTR b;
r = iv->table->ops->get_dimensions(iv->table, NULL, &col_count);
if (r != ERROR_SUCCESS)