File tree Expand file tree Collapse file tree 3 files changed +7
-7
lines changed Expand file tree Collapse file tree 3 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -2454,9 +2454,9 @@ bool CChainState::FlushStateToDisk(
2454
2454
full_flush_completed = true ;
2455
2455
TRACE5 (utxocache, flush,
2456
2456
(int64_t )(GetTimeMicros () - nNow.count ()), // in microseconds (µs)
2457
- (u_int32_t )mode,
2458
- (u_int64_t )coins_count,
2459
- (u_int64_t )coins_mem_usage,
2457
+ (uint32_t )mode,
2458
+ (uint64_t )coins_count,
2459
+ (uint64_t )coins_mem_usage,
2460
2460
(bool )fFlushForPrune );
2461
2461
}
2462
2462
}
Original file line number Diff line number Diff line change @@ -99,7 +99,7 @@ void BerkeleyEnvironment::Close()
99
99
if (ret != 0 )
100
100
LogPrintf (" BerkeleyEnvironment::Close: Error %d closing database environment: %s\n " , ret, DbEnv::strerror (ret));
101
101
if (!fMockDb )
102
- DbEnv ((u_int32_t )0 ).remove (strPath.c_str (), 0 );
102
+ DbEnv ((uint32_t )0 ).remove (strPath.c_str (), 0 );
103
103
104
104
if (error_file) fclose (error_file);
105
105
@@ -248,7 +248,7 @@ const void* BerkeleyBatch::SafeDbt::get_data() const
248
248
return m_dbt.get_data ();
249
249
}
250
250
251
- u_int32_t BerkeleyBatch::SafeDbt::get_size () const
251
+ uint32_t BerkeleyBatch::SafeDbt::get_size () const
252
252
{
253
253
return m_dbt.get_size ();
254
254
}
Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ struct bilingual_str;
34
34
namespace wallet {
35
35
36
36
struct WalletDatabaseFileId {
37
- u_int8_t value[DB_FILE_ID_LEN];
37
+ uint8_t value[DB_FILE_ID_LEN];
38
38
bool operator ==(const WalletDatabaseFileId& rhs) const ;
39
39
};
40
40
@@ -182,7 +182,7 @@ class BerkeleyBatch : public DatabaseBatch
182
182
183
183
// delegate to Dbt
184
184
const void * get_data () const ;
185
- u_int32_t get_size () const ;
185
+ uint32_t get_size () const ;
186
186
187
187
// conversion operator to access the underlying Dbt
188
188
operator Dbt*();
You can’t perform that action at this time.
0 commit comments