Skip to content

Commit

Permalink
[preload] Remove \ that caused a warning
Browse files Browse the repository at this point in the history
Fix "Unrecognized escape \M passed through" warning.
  • Loading branch information
Thaodan committed Jan 14, 2021
1 parent 1248e3d commit f395409
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scratchbox2/preload/gen-interface.pl
Expand Up @@ -592,7 +592,7 @@ sub process_wrap_or_gate_modifiers {

my $i;
for($i=0; $i < $num_modifiers; $i++) {
if($debug) { printf "\Modifier:'%s'\n", $modifiers[$i]; }
if($debug) { printf "Modifier:'%s'\n", $modifiers[$i]; }
if($modifiers[$i] =~ m/^map\((.*)\)$/) {
my $param_to_be_mapped = $1;

Expand Down

0 comments on commit f395409

Please sign in to comment.