summaryrefslogtreecommitdiff
path: root/src/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c11
1 files changed, 4 insertions, 7 deletions
diff --git a/src/main.c b/src/main.c
index 40a63bc..fa334b3 100644
--- a/src/main.c
+++ b/src/main.c
@@ -67,16 +67,13 @@ int main(int argc, char *argv[]) {
exit(1);
}
- struct bStream *stream = bsopen((bNread)fread, fp);
- if (stream == NULL) {
- printf("Error opening stream\n");
- }
- while (bsreadln(s, stream, '\n') != BSTR_ERR) {
+ while ((s = bgets((bNgetc) fgetc, fp, '\n'))) {
check(incorporate_line(s, linenum, &cur) == 0,
- "error incorporating line %d of %s", linenum, argv[files[g]]);
+ "error incorporating line %d", linenum);
+ bdestroy(s);
linenum++;
}
- bsclose(stream);
+ fclose(fp);
}
}