Module: wine Branch: master Commit: 58c55881bec3618f48c2cee6ec5336e8344c2c82 URL: http://source.winehq.org/git/wine.git/?a=commit;h=58c55881bec3618f48c2cee6ec...
Author: Andrew Talbot Andrew.Talbot@talbotville.com Date: Mon Jun 11 23:04:49 2007 +0100
msi: Constify a variable.
---
dlls/msi/format.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/msi/format.c b/dlls/msi/format.c index 1bcfa6e..4b5edc4 100644 --- a/dlls/msi/format.c +++ b/dlls/msi/format.c @@ -45,7 +45,7 @@ static DWORD deformat_string_internal(MSIPACKAGE *package, LPCWSTR ptr, BOOL* in_group);
-static LPWSTR build_default_format(MSIRECORD* record) +static LPWSTR build_default_format(const MSIRECORD* record) { int i; int count;