(svn r22145) -Codechange: Do explicit test for non-bool values.

This commit is contained in:
alberth
2011-02-25 22:04:38 +00:00
parent 1dbc0a20be
commit 31386c42a7
14 changed files with 31 additions and 31 deletions

View File

@@ -456,7 +456,7 @@ public:
}
/* if min speed was requested, return it */
if (pmin_speed) *pmin_speed = min_speed;
if (pmin_speed != NULL) *pmin_speed = min_speed;
return max_speed;
}
};