diff options
author | Alan Mishchenko <alanmi@berkeley.edu> | 2022-02-18 14:11:17 -0800 |
---|---|---|
committer | Alan Mishchenko <alanmi@berkeley.edu> | 2022-02-18 14:11:17 -0800 |
commit | 31519bd6d6c9cff4691019f72e0faf72e37bde88 (patch) | |
tree | db3d968e700a790b92cac5032a34fa1cf9be6b07 /src/base | |
parent | 34fe762d36c8cb3327d1d5bb96092a4a8f3b7593 (diff) | |
download | abc-31519bd6d6c9cff4691019f72e0faf72e37bde88.tar.gz abc-31519bd6d6c9cff4691019f72e0faf72e37bde88.tar.bz2 abc-31519bd6d6c9cff4691019f72e0faf72e37bde88.zip |
Similar changes suggested in other places.
Diffstat (limited to 'src/base')
-rw-r--r-- | src/base/cmd/cmd.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/base/cmd/cmd.c b/src/base/cmd/cmd.c index a0042443..fe7286b7 100644 --- a/src/base/cmd/cmd.c +++ b/src/base/cmd/cmd.c @@ -1161,7 +1161,7 @@ int CmdCommandScanDir( Abc_Frame_t * pAbc, int argc, char **argv ) struct _finddata_t c_file; char * pDirStr = NULL; char* pDirCur = NULL; - long hFile; + ABC_PTRINT_T hFile; char c; Extra_UtilGetoptReset(); @@ -1354,7 +1354,7 @@ void CnfDupFileUnzip( char * pOldName ) int CmdCommandRenameFiles( Abc_Frame_t * pAbc, int argc, char **argv ) { struct _finddata_t c_file; - long hFile; + ABC_PTRINT_T hFile; char pNewName[1000]; char * pDirStr = NULL; char * pDirCur = NULL; @@ -1515,7 +1515,7 @@ usage: int CmdCommandLs( Abc_Frame_t * pAbc, int argc, char **argv ) { struct _finddata_t c_file; - long hFile; + ABC_PTRINT_T hFile; int fLong = 0; int fOnlyBLIF = 0; char Buffer[25]; @@ -1618,7 +1618,7 @@ usage: int CmdCommandScrGen( Abc_Frame_t * pAbc, int argc, char **argv ) { struct _finddata_t c_file; - long hFile; + ABC_PTRINT_T hFile; FILE * pFile = NULL; char * pFileStr = "test.s"; char * pDirStr = NULL; |