]> git.xolatile.top Git - soikk-wordfinder.git/commitdiff
Update wordfinder.c
authorSoikk <76824648+Soikk@users.noreply.github.com>
Sun, 5 Sep 2021 19:38:30 +0000 (21:38 +0200)
committerSoikk <76824648+Soikk@users.noreply.github.com>
Sun, 5 Sep 2021 19:38:30 +0000 (21:38 +0200)
Typo

wordfinder.c

index 532901f0d30cfa8337e82c65d02e1a1ee7c30f1b..71e3a5c617dcbbf826f0b8cd8d91230b710e1c26 100644 (file)
@@ -39,7 +39,7 @@ Data *createData(char *name, int lines, lineData *lineList){
        return newData;
 }
 
-dataNode * createNode(Data *data, dataNode *next){
+dataNode *createNode(Data *data, dataNode *next){
        dataNode *newNode = malloc(sizeof(dataNode));
        newNode->data = data;
        newNode->next = next;