aboutsummaryrefslogtreecommitdiff
path: root/src/common/container.c
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2005-09-30 01:39:24 +0000
committerNick Mathewson <nickm@torproject.org>2005-09-30 01:39:24 +0000
commit26e7a05725bcb2cea59401803371ee3fa688a8f6 (patch)
treeb81d9d8ee4672297b78012cecd17142616b2944e /src/common/container.c
parentedd15cb781934d91ae92adbe3311bf339ddbf2e8 (diff)
downloadtor-26e7a05725bcb2cea59401803371ee3fa688a8f6.tar
tor-26e7a05725bcb2cea59401803371ee3fa688a8f6.tar.gz
even better function start checks; give dmalloc a chance of working.
svn:r5162
Diffstat (limited to 'src/common/container.c')
-rw-r--r--src/common/container.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/common/container.c b/src/common/container.c
index 436c4bc01..39cabe9c5 100644
--- a/src/common/container.c
+++ b/src/common/container.c
@@ -550,7 +550,8 @@ strmap_set(strmap_t *map, const char *key, void *val)
/** Return the current value associated with <b>key</b>, or NULL if no
* value is set.
*/
-void *strmap_get(strmap_t *map, const char *key)
+void *
+strmap_get(strmap_t *map, const char *key)
{
strmap_entry_t *resolve;
strmap_entry_t search;