Use nullptr instead of 0 when initialising hp

pull/3530/head
Isaac Connor 2022-07-14 10:44:00 -04:00
parent 64a9120ea7
commit 774adcf7cc
1 changed files with 1 additions and 1 deletions

View File

@ -45,7 +45,7 @@ RemoteCamera::RemoteCamera(
host( p_host ), host( p_host ),
port( p_port ), port( p_port ),
path( p_path ), path( p_path ),
hp( 0 ), hp( nullptr ),
mNeedAuth(false), mNeedAuth(false),
mAuthenticator(nullptr) mAuthenticator(nullptr)
{ {