perf tools: Be consistent on the type of map->symbols[] interator
authorArnaldo Carvalho de Melo <acme@redhat.com>
Tue, 14 Feb 2017 19:19:56 +0000 (16:19 -0300)
committerArnaldo Carvalho de Melo <acme@redhat.com>
Tue, 14 Feb 2017 19:19:56 +0000 (16:19 -0300)
commita0b2f5af4c99d3da7ce9bc2b3b4641c8ffd22615
tree6d3d62f2610583f6f7c5147cfa57edb5a0f8b019
parent35670dd0c9b421f1bb6ca69f389aa6b657b57d49
perf tools: Be consistent on the type of map->symbols[] interator

In a few cases we were using 'enum map_type' and that triggered this
warning when using clang:

  util/session.c:1923:16: error: comparison of constant 2 with expression of type 'enum map_type' is always true
      [-Werror,-Wtautological-constant-out-of-range-compare]
        for (i = 0; i < MAP__NR_TYPES; ++i) {

Cc: Adrian Hunter <adrian.hunter@intel.com>
Cc: David Ahern <dsahern@gmail.com>
Cc: Jiri Olsa <jolsa@kernel.org>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Wang Nan <wangnan0@huawei.com>
Link: http://lkml.kernel.org/n/tip-i6uyo6bsopa2dghnx8qo7rri@git.kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
tools/perf/util/machine.c
tools/perf/util/session.c