Joseph Redmon
2014-02-24 bc902b277e9131cc169751056786de5393da737d
src/data.c
@@ -10,6 +10,7 @@
{
    char *path;
    FILE *file = fopen(filename, "r");
    if(!file) file_error(filename);
    list *lines = make_list();
    while((path=fgetl(file))){
        list_insert(lines, path);