diff options
author | Nick Mathewson <nickm@torproject.org> | 2014-02-25 10:23:38 -0500 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2014-02-25 10:23:38 -0500 |
commit | f8e3c1672d8ca0874445cddd8dddcf61bf029b7d (patch) | |
tree | ed405bea3e89cbb2badbd29d576f88253dc0cd3b | |
parent | 92da2e27a216d5251ed6bdcef7c005ab11f2676f (diff) | |
download | tor-f8e3c1672d8ca0874445cddd8dddcf61bf029b7d.tar.gz tor-f8e3c1672d8ca0874445cddd8dddcf61bf029b7d.zip |
Trivial comment fix.
-rw-r--r-- | src/common/backtrace.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/backtrace.c b/src/common/backtrace.c index 3db2d6c235..239c65782b 100644 --- a/src/common/backtrace.c +++ b/src/common/backtrace.c @@ -49,7 +49,7 @@ static char *bt_version = NULL; /** Static allocation of stack to dump. This is static so we avoid stack * pressure. */ static void *cb_buf[MAX_DEPTH]; -/** Protects cb_buf_mutex from concurrent access */ +/** Protects cb_buf from concurrent access */ static tor_mutex_t cb_buf_mutex; /** Change a stacktrace in <b>stack</b> of depth <b>depth</b> so that it will |