From 4e4d559407ed0ad67a62005f04205590edb4d2c5 Mon Sep 17 00:00:00 2001 From: pat Date: Mon, 13 Oct 2014 10:20:30 -0700 Subject: [PATCH] Fix tmsis -a. --- Control/TMSITable.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Control/TMSITable.cpp b/Control/TMSITable.cpp index 5080e53..626656c 100644 --- a/Control/TMSITable.cpp +++ b/Control/TMSITable.cpp @@ -841,7 +841,7 @@ vector< vector > TMSITable::tmsiTabView(int verbosity, bool rawFlag, uns void TMSITable::tmsiTabDump(int verbosity,bool rawFlag, ostream& os, bool showAll, bool taboption) const { // Dump the TMSI table. - unsigned maxrows = showAll ? 2^31 : 100; + unsigned maxrows = showAll ? 10000000 : 100; vector< vector > view = tmsiTabView(verbosity, rawFlag, maxrows); #if unused