Use short-circuiting or (also may save some code size)

Co-authored-by: Dan Halbert <halbert@adafruit.com>
This commit is contained in:
Jeff Epler 2023-03-29 10:09:01 -05:00 committed by GitHub
parent cc3d0f6fa1
commit a8bbb21eeb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -72,7 +72,7 @@ STATIC void close_file(file_arg *active_file) {
// nothing // nothing
} }
STATIC bool is_eof(file_arg *active_file) { STATIC bool is_eof(file_arg *active_file) {
return f_eof(active_file) | f_error(active_file); return f_eof(active_file) || f_error(active_file);
} }
// Return 0 if there is no next character (EOF). // Return 0 if there is no next character (EOF).