diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2019-08-23 13:22:24 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2019-08-23 13:22:24 +0300 |
commit | ea165901ac317100d3d54bc2ad7fc3582b1dd53c (patch) | |
tree | e1a28500e7c85357ea1d394d2da6262c2cd1fa69 /main.c | |
parent | 4ee83adb563e86ac2283d47117b8f6c456a67c94 (diff) | |
download | egawk-ea165901ac317100d3d54bc2ad7fc3582b1dd53c.tar.gz egawk-ea165901ac317100d3d54bc2ad7fc3582b1dd53c.tar.bz2 egawk-ea165901ac317100d3d54bc2ad7fc3582b1dd53c.zip |
Fix whitespace in main.c.
Diffstat (limited to 'main.c')
-rw-r--r-- | main.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -435,12 +435,12 @@ main(int argc, char **argv) init_ext_api(); /* load extension libs */ - for (s = srcfiles->next; s != srcfiles; s = s->next) { - if (s->stype == SRC_EXTLIB) + for (s = srcfiles->next; s != srcfiles; s = s->next) { + if (s->stype == SRC_EXTLIB) load_ext(s->fullpath); else if (s->stype != SRC_INC) have_srcfile++; - } + } /* do version check after extensions are loaded to get extension info */ if (do_version) @@ -1694,7 +1694,7 @@ parse_args(int argc, char **argv) case 'S': do_flags |= DO_SANDBOX; - break; + break; case 'V': do_version = true; |