diff options
author | karl <karl> | 2014-06-13 23:55:05 +0000 |
---|---|---|
committer | karl <karl> | 2014-06-13 23:55:05 +0000 |
commit | 4d23c9a59165105b909eecba57f8a482e11deacf (patch) | |
tree | d72fcd0677649e8317fc74a7ce3e6795ae8438d7 | |
parent | 552af8c42e7433a04035da86980ca5d7c02953e1 (diff) | |
download | tog-pegasus-4d23c9a59165105b909eecba57f8a482e11deacf.zip tog-pegasus-4d23c9a59165105b909eecba57f8a482e11deacf.tar.gz tog-pegasus-4d23c9a59165105b909eecba57f8a482e11deacf.tar.xz |
BUG#: 9904
TITLE: Static table size definition issue in cimperf causes bad output of table (Trivial bug)
DESCRIPTION: Fix table definition
-rw-r--r-- | src/Clients/cimperf/cimperf.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Clients/cimperf/cimperf.cpp b/src/Clients/cimperf/cimperf.cpp index d396ae8..ed3bb75 100644 --- a/src/Clients/cimperf/cimperf.cpp +++ b/src/Clients/cimperf/cimperf.cpp @@ -102,8 +102,8 @@ const char* operationName[] = "InvokeMethod" // Not Present, use 1 ((:Other") }; -Uint32 operationNameSize = sizeof(operationName[0]) / - sizeof (operationName); +Uint32 operationNameSize = sizeof(operationName) / + sizeof (operationName[0]); /* Method to build an OptionManager object - which holds and organizes options and the properties */ |