Trisurf Monte Carlo simulator
Samo Penic
2016-02-16 3c772b77bab770a167924b17e248aa2dd022e38a
Small fix, so it compiles
1 files modified
3 ■■■■ changed files
src/restore.c 3 ●●●● patch | view | raw | blame | history
src/restore.c
@@ -32,7 +32,7 @@
    cur = cur->xmlChildrenNode;
    while (cur != NULL) {
        if ((!xmlStrcmp(cur->name, (const xmlChar *)"trisurf"))){
            *vesicle=parseTrisurfTag(doc, cur);
            vesicle=parseTrisurfTag(doc, cur);
        }
         
    cur = cur->next;
@@ -41,6 +41,7 @@
    xmlFreeDoc(doc);
    fprintf(stderr,"Restoration completed\n");
    exit(0);
    vesicle_free(vesicle);
    return TS_SUCCESS;
}