From d3bb52f20442b164f90465d40b37ad300e17938d Mon Sep 17 00:00:00 2001 From: Justin Li Date: Thu, 24 Jul 2014 20:30:59 -0400 Subject: [PATCH] Correct reference to flattenPointer --- stats/struct_flattener.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stats/struct_flattener.go b/stats/struct_flattener.go index 48dfb78..a55f0f4 100644 --- a/stats/struct_flattener.go +++ b/stats/struct_flattener.go @@ -97,5 +97,5 @@ func flattenValue(val reflect.Value) FlatMap { } func Flatten(val interface{}) FlatMap { - return flattenPointer(reflect.ValueOf(val)) + return flattenValue(reflect.ValueOf(val)) }