mirror of
https://github.com/harfbuzz/harfbuzz.git
synced 2025-04-05 05:25:05 +00:00
[util] Fix Windows build
Windows headers define `environ`.
This commit is contained in:
parent
93288a1ced
commit
a6f563247e
1 changed files with 2 additions and 2 deletions
|
@ -185,11 +185,11 @@ struct option_parser_t
|
|||
g_string_free (s, TRUE);
|
||||
}
|
||||
|
||||
void add_environ (const char *environ)
|
||||
void add_environ (const char *environment)
|
||||
{
|
||||
if (!environs)
|
||||
environs = g_ptr_array_new ();
|
||||
g_ptr_array_add (environs, g_strdup (environ));
|
||||
g_ptr_array_add (environs, g_strdup (environment));
|
||||
}
|
||||
|
||||
void free_later (char *p) {
|
||||
|
|
Loading…
Add table
Reference in a new issue