diff options
author | Matt Ellis <matell@microsoft.com> | 2015-10-23 00:55:23 -0700 |
---|---|---|
committer | Matt Ellis <matell@microsoft.com> | 2015-10-23 00:55:23 -0700 |
commit | 036964efe7ec495e26dade9aed9b847e1c566d6a (patch) | |
tree | b2d397f66f8cb0b66b669ffae1e27ab90456cb15 /src/corefx | |
parent | 26e874722bebb95e27b9ce2fba14812b885aaf19 (diff) | |
download | coreclr-036964efe7ec495e26dade9aed9b847e1c566d6a.tar.gz coreclr-036964efe7ec495e26dade9aed9b847e1c566d6a.tar.bz2 coreclr-036964efe7ec495e26dade9aed9b847e1c566d6a.zip |
Use correct close function for UNumberFormat
Diffstat (limited to 'src/corefx')
-rw-r--r-- | src/corefx/System.Globalization.Native/holders.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/corefx/System.Globalization.Native/holders.h b/src/corefx/System.Globalization.Native/holders.h index 9176de3b20..4969726ed6 100644 --- a/src/corefx/System.Globalization.Native/holders.h +++ b/src/corefx/System.Globalization.Native/holders.h @@ -74,7 +74,7 @@ struct UNumberFormatCloser { void operator()(UNumberFormat* pNumberFormat) const { - udat_close(pNumberFormat); + unum_close(pNumberFormat); } }; |