mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-24 20:33:31 +01:00
Fix windows compilation warning in test_config.c
bugfix on 78cc5833a1da038331186ddf07f4add7f8f1094b; bug not in any released Tor. Spotted by weasel using Jenkins.
This commit is contained in:
parent
97d1caadfd
commit
4d7ac69f05
@ -196,7 +196,9 @@ test_config_check_or_create_data_subdir(void *arg)
|
||||
const char *subpath = get_datadir_fname(subdir);
|
||||
struct stat st;
|
||||
int r;
|
||||
#if !defined (_WIN32) || defined (WINCE)
|
||||
unsigned group_permission;
|
||||
#endif
|
||||
(void)arg;
|
||||
|
||||
#if defined (_WIN32) && !defined (WINCE)
|
||||
|
Loading…
Reference in New Issue
Block a user