fusion: Avoid harcoding array lengths

Frédéric Delanoy frederic.delanoy at gmail.com
Thu Nov 17 13:30:38 CST 2011


---
 dlls/fusion/fusionpriv.h |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/dlls/fusion/fusionpriv.h b/dlls/fusion/fusionpriv.h
index aecb026..8d51f5d 100644
--- a/dlls/fusion/fusionpriv.h
+++ b/dlls/fusion/fusionpriv.h
@@ -461,7 +461,7 @@ static inline void token_to_str(BYTE *bytes, LPWSTR str)
 {
     DWORD i;
 
-    static const WCHAR hexval[16] = {
+    static const WCHAR hexval[] = {
         '0','1','2','3','4','5','6','7','8','9','a','b','c','d','e','f'
     };
 
-- 
1.7.7.2




More information about the wine-patches mailing list