Module: wine Branch: master Commit: 1da5618cbac1214082bfb897dc81804d14fc6e9e URL: https://gitlab.winehq.org/wine/wine/-/commit/1da5618cbac1214082bfb897dc81804...
Author: Alex Henrie alexhenrie24@gmail.com Date: Sun Jun 4 22:19:33 2023 -0600
msi: Make TransformView_Create static.
---
dlls/msi/table.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dlls/msi/table.c b/dlls/msi/table.c index e83c076ab23..77fa20502c5 100644 --- a/dlls/msi/table.c +++ b/dlls/msi/table.c @@ -2765,7 +2765,7 @@ static const MSIVIEWOPS transform_view_ops = NULL };
-UINT TransformView_Create( MSIDATABASE *db, string_table *st, LPCWSTR name, MSIVIEW **view ) +static UINT TransformView_Create( MSIDATABASE *db, string_table *st, LPCWSTR name, MSIVIEW **view ) { static const WCHAR query_pfx[] = L"SELECT `Column`, `Data`, `Current` FROM `_TransformView` WHERE `Table`='"; static const WCHAR query_sfx[] = L"' AND `Row` IS NULL AND `Current` IS NOT NULL AND `new` = 1";