Skip to content

Commit

Permalink
Merge pull request #148 from saper/missing_p
Browse files Browse the repository at this point in the history
Support -p as advertised
  • Loading branch information
mgreter committed Sep 27, 2015
2 parents 5d39ab9 + 6f25960 commit 40cec9a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sassc.c
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ int main(int argc, char** argv) {
{ "help", no_argument, 0, 'h' },
{ NULL, 0, NULL, 0}
};
while ((c = getopt_long(argc, argv, "vhslmMt:I:", long_options, &long_index)) != -1) {
while ((c = getopt_long(argc, argv, "vhslmMp:t:I:", long_options, &long_index)) != -1) {
switch (c) {
case 's':
from_stdin = 1;
Expand Down

0 comments on commit 40cec9a

Please sign in to comment.