Module: wine Branch: master Commit: f95a4de5d5579af877d8cdb90626bb7f41d82e79 URL: https://source.winehq.org/git/wine.git/?a=commit;h=f95a4de5d5579af877d8cdb90...
Author: Michael Stefaniuc mstefani@winehq.org Date: Mon Oct 12 00:02:50 2020 +0200
presentationfontcache: Use wide-char string literals.
Signed-off-by: Michael Stefaniuc mstefani@winehq.org Signed-off-by: Alexandre Julliard julliard@winehq.org
---
programs/presentationfontcache/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/programs/presentationfontcache/main.c b/programs/presentationfontcache/main.c index 694ad792db..ab2d0e2106 100644 --- a/programs/presentationfontcache/main.c +++ b/programs/presentationfontcache/main.c @@ -24,7 +24,7 @@
WINE_DEFAULT_DEBUG_CHANNEL(fontcache);
-static WCHAR fontcacheW[] = {'F','o','n','t','C','a','c','h','e','3','.','0','.','0','.','0',0}; +static WCHAR fontcacheW[] = L"FontCache3.0.0.0";
static SERVICE_STATUS_HANDLE service_handle; static HANDLE stop_event;