mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-27 22:03:31 +01:00
Fix duplicate typedef in metrics_store_entry.h
Fixes #40171. Bug not in any released Tor.
This commit is contained in:
parent
03be7de168
commit
df16376004
@ -17,7 +17,7 @@
|
|||||||
|
|
||||||
/** Metrics store entry. They reside in a metrics_store_t object and are
|
/** Metrics store entry. They reside in a metrics_store_t object and are
|
||||||
* opaque to the outside world. */
|
* opaque to the outside world. */
|
||||||
typedef struct metrics_store_entry_t {
|
struct metrics_store_entry_t {
|
||||||
/** Type of entry. */
|
/** Type of entry. */
|
||||||
metrics_type_t type;
|
metrics_type_t type;
|
||||||
|
|
||||||
@ -38,7 +38,7 @@ typedef struct metrics_store_entry_t {
|
|||||||
metrics_counter_t counter;
|
metrics_counter_t counter;
|
||||||
metrics_gauge_t gauge;
|
metrics_gauge_t gauge;
|
||||||
} u;
|
} u;
|
||||||
} metrics_store_entry_t;
|
};
|
||||||
|
|
||||||
#endif /* METRICS_STORE_ENTRY_PRIVATE */
|
#endif /* METRICS_STORE_ENTRY_PRIVATE */
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user