Moved verbose output to a shared module in the common/ directory.
git-svn-id: svn://svn.cc65.org/cc65/trunk@619 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
@@ -41,6 +41,7 @@
|
||||
/* common */
|
||||
#include "chartype.h"
|
||||
#include "cmdline.h"
|
||||
#include "print.h"
|
||||
#include "target.h"
|
||||
#include "tgttrans.h"
|
||||
#include "version.h"
|
||||
@@ -313,7 +314,7 @@ static void OptTarget (const char* Opt, const char* Arg)
|
||||
static void OptVerbose (const char* Opt, const char* Arg)
|
||||
/* Increase verbosity */
|
||||
{
|
||||
++Verbose;
|
||||
++Verbosity;
|
||||
}
|
||||
|
||||
|
||||
@@ -636,7 +637,7 @@ int main (int argc, char* argv [])
|
||||
}
|
||||
|
||||
/* Dump the data */
|
||||
if (Verbose >= 2) {
|
||||
if (Verbosity >= 2) {
|
||||
SymDump (stdout);
|
||||
SegDump ();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user