tools lib traceevent: Handle INVALID_ARG_TYPE errno in pevent_strerror
authorArnaldo Carvalho de Melo <acme@redhat.com>
Fri, 9 Nov 2012 18:50:33 +0000 (15:50 -0300)
committerArnaldo Carvalho de Melo <acme@redhat.com>
Fri, 9 Nov 2012 20:35:31 +0000 (17:35 -0300)
commit7a905611644c015e68a955f263fd0a4b7b20879d
tree243eb71518d4b5e3fbd6796d654df0dd45d4031c
parente46466b8bd5918626250dc0d6cb6c2147a611087
tools lib traceevent: Handle INVALID_ARG_TYPE errno in pevent_strerror

gcc on f14 32-bit rightly complains:

   tools/lib/traceevent/event-parse.c:5097:2: error: enumeration value ‘PEVENT_ERRNO__INVALID_ARG_TYPE’ not handled in switch

The entry for it is in the error strings array pevent_error_str[]:

        _PE(INVALID_ARG_TYPE,   "invalid argument type")

It was just not being handled on the pevent_strerror switch, fix it.

Cc: David Ahern <dsahern@gmail.com>
Cc: Frederic Weisbecker <fweisbec@gmail.com>
Cc: Mike Galbraith <efault@gmx.de>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Stephane Eranian <eranian@google.com>
Cc: Steven Rostedt <rostedt@goodmis.org>
Link: http://lkml.kernel.org/n/tip-c68zkvxw4289uqbosfkz963g@git.kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
tools/lib/traceevent/event-parse.c