diff options
author | Nick Mathewson <nickm@torproject.org> | 2019-07-24 09:08:48 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2019-07-24 09:08:48 -0400 |
commit | 167d873bdec3354a74417473043b2e82b6723177 (patch) | |
tree | d54d5e3ab9ad249b74af1e2e805ccf7119b2145f /src/test | |
parent | 5fb070a14da4802f11e84ed83143668502a227c4 (diff) | |
download | tor-167d873bdec3354a74417473043b2e82b6723177.tar.gz tor-167d873bdec3354a74417473043b2e82b6723177.zip |
Fix clang-detected errors related to log_domain_mask_t
Diffstat (limited to 'src/test')
-rw-r--r-- | src/test/test_options.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/test_options.c b/src/test/test_options.c index d2f0c11218..7009910b0f 100644 --- a/src/test/test_options.c +++ b/src/test/test_options.c @@ -31,7 +31,7 @@ typedef struct { int severity; - uint32_t domain; + log_domain_mask_t domain; char *msg; } logmsg_t; |