From cfedbab4fefea3f09a29c1e0f26ac3373e83e3ea Mon Sep 17 00:00:00 2001 From: hunt Date: Mon, 28 Nov 2005 20:08:09 +0000 Subject: 2005-11-28 Martin Hunt * map-stat.c (_stp_pmap_new_hstat_log): Fix typo. Call _stp_pmap_new() instead of _stp_map_new(). --- runtime/map-stat.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'runtime/map-stat.c') diff --git a/runtime/map-stat.c b/runtime/map-stat.c index 7d4e72aa..51377d00 100644 --- a/runtime/map-stat.c +++ b/runtime/map-stat.c @@ -101,7 +101,7 @@ static MAP _stp_pmap_new_hstat_log (unsigned max_entries, int key_size, int buck { /* add size for buckets */ int size = buckets * sizeof(int64_t) + sizeof(stat); - MAP map = _stp_map_new (max_entries, STAT, key_size, size); + MAP map = _stp_pmap_new (max_entries, STAT, key_size, size); if (map) { int i; MAP m; -- cgit