From 53b517d4831558a3e105745da5ba566bf2073f71 Mon Sep 17 00:00:00 2001 From: wjrforcyber Date: Wed, 13 Nov 2024 11:37:16 +0800 Subject: [PATCH] Refactor(ErrorMessage): Use integer rather than filename --- src/base/abci/abc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/base/abci/abc.c b/src/base/abci/abc.c index 0140edf51..a6ef02f13 100644 --- a/src/base/abci/abc.c +++ b/src/base/abci/abc.c @@ -9914,7 +9914,7 @@ int Abc_CommandLutExact( Abc_Frame_t * pAbc, int argc, char ** argv ) case 'R': if ( globalUtilOptind >= argc ) { - Abc_Print( -1, "Command line switch \"-R\" should be followed by a file name.\n" ); + Abc_Print( -1, "Command line switch \"-R\" should be followed by an integer.\n" ); goto usage; } pPars->nRandFuncs = atoi(argv[globalUtilOptind]); @@ -9923,7 +9923,7 @@ int Abc_CommandLutExact( Abc_Frame_t * pAbc, int argc, char ** argv ) case 'M': if ( globalUtilOptind >= argc ) { - Abc_Print( -1, "Command line switch \"-M\" should be followed by a file name.\n" ); + Abc_Print( -1, "Command line switch \"-M\" should be followed by an integer.\n" ); goto usage; } pPars->nMintNum = atoi(argv[globalUtilOptind]);