diff options
author | Nick Mathewson <nickm@torproject.org> | 2018-06-21 12:03:34 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2018-06-21 13:14:14 -0400 |
commit | 209a2851663c62474b7b719d03fcca378201c0f9 (patch) | |
tree | e7e43e1722489230bfe8c3917bbe3a951babd81e | |
parent | 4bdda6d05faf24b4ff46bfcb7e40fb5d21e51259 (diff) | |
download | tor-209a2851663c62474b7b719d03fcca378201c0f9.tar.gz tor-209a2851663c62474b7b719d03fcca378201c0f9.zip |
Rectify include paths (automated)
-rw-r--r-- | src/lib/trace/events.h | 2 | ||||
-rw-r--r-- | src/lib/trace/trace.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/trace/events.h b/src/lib/trace/events.h index 761a0f4eb8..6d4269aaed 100644 --- a/src/lib/trace/events.h +++ b/src/lib/trace/events.h @@ -31,7 +31,7 @@ /* Enable event tracing for the debug framework where all trace events are * mapped to a log_debug(). */ #ifdef USE_EVENT_TRACING_DEBUG -#include "trace/debug.h" +#include "lib/trace/debug.h" #endif #else /* TOR_EVENT_TRACING_ENABLED */ diff --git a/src/lib/trace/trace.c b/src/lib/trace/trace.c index b39a2bbc5c..c0bbbb0cc6 100644 --- a/src/lib/trace/trace.c +++ b/src/lib/trace/trace.c @@ -1,7 +1,7 @@ /* Copyright (c) 2017-2018, The Tor Project, Inc. */ /* See LICENSE for licensing information */ -#include "trace/trace.h" +#include "lib/trace/trace.h" /** Initialize the tracing library. */ void |