Fix tmsis -a.

This commit is contained in:
pat
2014-10-13 10:20:30 -07:00
committed by Michael Iedema
parent 61072e77b0
commit 4e4d559407

View File

@@ -841,7 +841,7 @@ vector< vector<string> > TMSITable::tmsiTabView(int verbosity, bool rawFlag, uns
void TMSITable::tmsiTabDump(int verbosity,bool rawFlag, ostream& os, bool showAll, bool taboption) const void TMSITable::tmsiTabDump(int verbosity,bool rawFlag, ostream& os, bool showAll, bool taboption) const
{ {
// Dump the TMSI table. // Dump the TMSI table.
unsigned maxrows = showAll ? 2^31 : 100; unsigned maxrows = showAll ? 10000000 : 100;
vector< vector<string> > view = tmsiTabView(verbosity, rawFlag, maxrows); vector< vector<string> > view = tmsiTabView(verbosity, rawFlag, maxrows);
#if unused #if unused