Skip to content

Commit 463465c

Browse files
committed
Fix mixed up arguments for add_source call
1 parent 0ae11a4 commit 463465c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/parser.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -349,8 +349,8 @@ namespace Sass {
349349
else error(message, ParserState(message, source, Position(line, column)));
350350
} else if (source) {
351351
if (file) {
352-
ctx.add_source(file, load_path, source);
353-
imp->files().push_back(file);
352+
ctx.add_source(load_path, file, source);
353+
imp->files().push_back(load_path);
354354
} else {
355355
ctx.add_source(load_path, load_path, source);
356356
imp->files().push_back(load_path);

0 commit comments

Comments
 (0)