diff options
author | Nick Mathewson <nickm@torproject.org> | 2019-11-07 08:45:08 -0500 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2019-11-07 08:45:08 -0500 |
commit | 0644530df2bddf083d355d0b22e6bdc63e61bde1 (patch) | |
tree | 331a8539465bdf63568554b208896372aa7dd0c2 /src/app/main | |
parent | 4845ab53f06c2886bd619f5e35a07d18b879f5ff (diff) | |
download | tor-0644530df2bddf083d355d0b22e6bdc63e61bde1.tar.gz tor-0644530df2bddf083d355d0b22e6bdc63e61bde1.zip |
ntmain: make service_fns struct anonymous.
Diffstat (limited to 'src/app/main')
-rw-r--r-- | src/app/main/ntmain.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/app/main/ntmain.c b/src/app/main/ntmain.c index 9351d96870..a49dfdbbc9 100644 --- a/src/app/main/ntmain.c +++ b/src/app/main/ntmain.c @@ -66,7 +66,7 @@ static int nt_service_cmd_stop(void); /** Struct to hold dynamically loaded NT-service related function pointers. */ -struct service_fns { +struct { int loaded; /** @{ */ |