From 8bebf65a42e2e923a4673829825673003d9ffb7b Mon Sep 17 00:00:00 2001 From: Alex Ionescu Date: Tue, 22 Nov 2005 00:50:12 +0000 Subject: [PATCH 1/1] - Don't use STATIC svn path=/trunk/; revision=19441 --- reactos/lib/rtl/unicode.c | 2 +- reactos/lib/rtl/unicodeprefix.c | 5 ++--- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/reactos/lib/rtl/unicode.c b/reactos/lib/rtl/unicode.c index 3686415c81d..a988c5848c1 100644 --- a/reactos/lib/rtl/unicode.c +++ b/reactos/lib/rtl/unicode.c @@ -1770,7 +1770,7 @@ NTAPI RtlStringFromGUID (IN REFGUID Guid, OUT PUNICODE_STRING GuidString) { - STATIC CONST PWCHAR Hex = L"0123456789ABCDEF"; + static CONST PWCHAR Hex = L"0123456789ABCDEF"; WCHAR Buffer[40]; PWCHAR BufferPtr; ULONG i; diff --git a/reactos/lib/rtl/unicodeprefix.c b/reactos/lib/rtl/unicodeprefix.c index 7de07b25480..7939b0c65bd 100644 --- a/reactos/lib/rtl/unicodeprefix.c +++ b/reactos/lib/rtl/unicodeprefix.c @@ -25,7 +25,7 @@ typedef USHORT NODE_TYPE_CODE; /* FUNCTIONS ***************************************************************/ -STATIC +static ULONG NTAPI ComputeUnicodeNameLength(IN PUNICODE_STRING UnicodeName) @@ -44,8 +44,7 @@ ComputeUnicodeNameLength(IN PUNICODE_STRING UnicodeName) return NamesFound; } - -STATIC +static RTL_GENERIC_COMPARE_RESULTS NTAPI CompareUnicodeStrings(IN PUNICODE_STRING Prefix, -- 2.17.1