summaryrefslogtreecommitdiffstats
path: root/libmsi/update.c
diff options
context:
space:
mode:
authorPaolo Bonzini <pbonzini@redhat.com>2012-11-30 11:06:53 +0100
committerPaolo Bonzini <pbonzini@redhat.com>2012-12-06 20:30:31 +0100
commit95586f6733d3fcbc756265818ef7e52b207542fe (patch)
tree6bc3b0de47e1001dab546f31cae765bf20b8998b /libmsi/update.c
parentc8b9a23e3d89efbc3f15f0c675a4bad421bfbe15 (diff)
downloadmsitools-95586f6733d3fcbc756265818ef7e52b207542fe.tar.gz
msitools-95586f6733d3fcbc756265818ef7e52b207542fe.tar.xz
msitools-95586f6733d3fcbc756265818ef7e52b207542fe.zip
use actual types in the API
Diffstat (limited to 'libmsi/update.c')
-rw-r--r--libmsi/update.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libmsi/update.c b/libmsi/update.c
index b169644..7623a8c 100644
--- a/libmsi/update.c
+++ b/libmsi/update.c
@@ -68,7 +68,7 @@ static unsigned UPDATE_execute( LibmsiView *view, LibmsiRecord *record )
/* extract the where markers from the record */
if (record)
{
- r = MSI_RecordGetFieldCount(record);
+ r = MsiRecordGetFieldCount(record);
for (i = 0; col; col = col->next)
i++;
@@ -78,7 +78,7 @@ static unsigned UPDATE_execute( LibmsiView *view, LibmsiRecord *record )
if (where_count > 0)
{
- where = MSI_CreateRecord(where_count);
+ where = MsiCreateRecord(where_count);
if (where)
for (i = 1; i <= where_count; i++)