diff options
author | Karsten Loesing <karsten.loesing@gmx.net> | 2013-09-12 10:51:55 +0200 |
---|---|---|
committer | Karsten Loesing <karsten.loesing@gmx.net> | 2013-09-12 10:51:55 +0200 |
commit | b43a37bc5b6813224b9ac727e98a96d6ce2c5f2b (patch) | |
tree | a3a58d9ed3639b72f72f37bc83c4b2c679fb657b /src/or/control.h | |
parent | d5f0d792dd2e4e5f0314ecd15efe42d1c5e64f25 (diff) | |
download | tor-b43a37bc5b6813224b9ac727e98a96d6ce2c5f2b.tar.gz tor-b43a37bc5b6813224b9ac727e98a96d6ce2c5f2b.zip |
Pass const uint64_t pointers, document array length.
Suggested by nickm.
Diffstat (limited to 'src/or/control.h')
-rw-r--r-- | src/or/control.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/or/control.h b/src/or/control.h index 1773a87374..1921d9704f 100644 --- a/src/or/control.h +++ b/src/or/control.h @@ -120,8 +120,8 @@ void sum_up_cell_stats_by_command(circuit_t *circ, cell_stats_t *cell_stats); void append_cell_stats_by_command(smartlist_t *event_parts, const char *key, - uint64_t *include_if_non_zero, - uint64_t *number_to_include); + const uint64_t *include_if_non_zero, + const uint64_t *number_to_include); void format_cell_stats(char **event_string, circuit_t *circ, cell_stats_t *cell_stats); #endif |