examples/{webpmux,unicode}: simplify W_CHAR casts

in calls to `LOCAL_FREE()`: `(W_CHAR** const) -> (W_CHAR**)`. This will
improve formatting when clang-format is applied.

Bug: 433996651
Change-Id: I54e62206c83473e9369b8c67fb8d6c44d7808d52
This commit is contained in:
James Zern
2025-07-28 18:02:39 -07:00
parent bfea600a5f
commit 86924ed5cd
2 changed files with 3 additions and 3 deletions

View File

@@ -48,7 +48,7 @@
#define GET_WARGV_OR_NULL() wargv
// Release resources. LocalFree() is needed after CommandLineToArgvW().
#define FREE_WARGV() LOCAL_FREE((W_CHAR** const)wargv)
#define FREE_WARGV() LOCAL_FREE((W_CHAR**)wargv)
#define LOCAL_FREE(WARGV) \
do { \
if ((WARGV) != NULL) LocalFree(WARGV); \