From bee7d6fbb3daf169e6cc573ba89a65923fa15524 Mon Sep 17 00:00:00 2001 From: intact Date: Wed, 29 Nov 2017 19:59:18 +0100 Subject: [PATCH] Fix CLI sourcemap argument --- sassc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sassc.c b/sassc.c index 37f6e03..b004ba4 100644 --- a/sassc.c +++ b/sassc.c @@ -271,7 +271,7 @@ int main(int argc, char** argv) { { "help", no_argument, 0, 'h' }, { NULL, 0, NULL, 0} }; - while ((c = getopt_long(argc, argv, "vhsl:mMap:t:I:P:", long_options, &long_index)) != -1) { + while ((c = getopt_long(argc, argv, "vhslm:Map:t:I:P:", long_options, &long_index)) != -1) { switch (c) { case 's': from_stdin = 1;