diff options
Diffstat (limited to 'utils.c')
-rw-r--r-- | utils.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -11,7 +11,7 @@ int checkIfFileExists(char *path) int detectOsType() { int exists = ERROR; - for ( int i = 0; i < ENUMSIZE || exists == ERROR; i++ ) + for ( int i = 0; i < ENUMSIZE && exists == ERROR; i++ ) { switch (i) { |