diff options
author | Harry Jeffery <harry@exec64.co.uk> | 2016-12-23 18:06:34 +0000 |
---|---|---|
committer | Harry Jeffery <harry@exec64.co.uk> | 2016-12-23 18:06:34 +0000 |
commit | 01466cc8405a673b8c3c43f0ac2cedb6b1251ad6 (patch) | |
tree | 3649abb9e534b9a0a6fa23091648e3f6bc06f802 | |
parent | c6a811615b6323ea6b43851def18ad28b37e80d6 (diff) | |
download | imv-01466cc8405a673b8c3c43f0ac2cedb6b1251ad6.tar.gz |
Fix indentation error
-rw-r--r-- | src/main.c | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -645,11 +645,11 @@ int main(int argc, char** argv) clearerr(stdin); continue; } - if(feof(stdin)) { - g_options.stdin_list = 0; - fprintf(stderr, "done with stdin\n"); - continue; - } + if(feof(stdin)) { + g_options.stdin_list = 0; + fprintf(stderr, "done with stdin\n"); + continue; + } size_t len = strlen(buf); if(buf[len-1] == '\n') { |