Skip to content

Fix an incorrect error check detected by the GCC analyzer

Carl Shapiro requested to merge cshapiro/cmucl:open-error into master

The return value of open(2) should be compared with -1 to check for an error but it was compared with 0 instead.

Merge request reports