mirror of
https://github.com/OPM/opm-simulators.git
synced 2024-12-18 21:43:27 -06:00
Use NULL instead of 0 in null comparison.
This commit is contained in:
parent
f976c6ee9d
commit
b5f6513520
@ -550,7 +550,7 @@ wells_equal(const struct Wells *W1, const struct Wells *W2 , bool verbose)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
if( W1 == 0 || W2 == 0)
|
||||
if( W1 == NULL || W2 == NULL)
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user