forked from eclipse-openj9/openj9
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix compile errors due to non-boolean if statements
Several if statements were not doing boolean comparisons and were directly assigning to a variable in the if statement i.e. if (foo = getFoo()) { ... Rewrote the code to be in the form: foo = getFoo(); if (NULL != foo) {... Signed-off-by: Dan Heidinga <[email protected]>
- Loading branch information
1 parent
b36b200
commit 2e4fdcc
Showing
1 changed file
with
10 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters