summaryrefslogtreecommitdiffstats
path: root/libmsi/msiquery.c
diff options
context:
space:
mode:
authorPaolo Bonzini <pbonzini@redhat.com>2012-10-23 10:26:25 +0200
committerPaolo Bonzini <pbonzini@redhat.com>2012-12-06 20:26:29 +0100
commit03613cc7fb190dd94623ebe96c72329d4f1d1475 (patch)
tree4b4ac768ebb0eca1b6dc2e1604b3caa8edb0f5ef /libmsi/msiquery.c
parentee54109d9b784c72b25418933494e0691f42c2e8 (diff)
downloadmsitools-03613cc7fb190dd94623ebe96c72329d4f1d1475.tar.gz
msitools-03613cc7fb190dd94623ebe96c72329d4f1d1475.tar.xz
msitools-03613cc7fb190dd94623ebe96c72329d4f1d1475.zip
split multiple declarations on a single line
Diffstat (limited to 'libmsi/msiquery.c')
-rw-r--r--libmsi/msiquery.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/libmsi/msiquery.c b/libmsi/msiquery.c
index 2c73a90..bc56e5f 100644
--- a/libmsi/msiquery.c
+++ b/libmsi/msiquery.c
@@ -56,7 +56,8 @@ static void MSI_CloseView( MSIOBJECT *arg )
UINT VIEW_find_column( MSIVIEW *table, LPCWSTR name, LPCWSTR table_name, UINT *n )
{
- LPCWSTR col_name, haystack_table_name;
+ LPCWSTR col_name;
+ LPCWSTR haystack_table_name;
UINT i, count, r;
r = table->ops->get_dimensions( table, NULL, &count );
@@ -790,7 +791,8 @@ struct msi_primary_key_record_info
static UINT msi_primary_key_iterator( MSIRECORD *rec, LPVOID param )
{
struct msi_primary_key_record_info *info = param;
- LPCWSTR name, table;
+ LPCWSTR name;
+ LPCWSTR table;
DWORD type;
type = MSI_RecordGetInteger( rec, 4 );