From 2c27f2eb405d5e1babf44e5706117e51c8f9846d Mon Sep 17 00:00:00 2001 From: Curle Date: Sat, 5 Mar 2022 01:22:54 +0000 Subject: [PATCH] Assign source files their actual locations --- src/Main.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Main.c b/src/Main.c index 2878c92..bf7c509 100644 --- a/src/Main.c +++ b/src/Main.c @@ -154,6 +154,7 @@ int main(int argc, char* argv[]) { while (i < argc) { // Prepare the source metadata before we start compiling struct FileData* Source = malloc(sizeof(struct FileData)); + Source->SourceName = argv[i]; Files[i] = Source; // Compile the file by invoking the Delegate