File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -277,13 +277,13 @@ FILE: while (defined ($file = shift(@_))) {
277
277
278
278
if (-d $file ) {
279
279
if (-l $file && @ARGV != 1) {
280
- warn " $Me : \ "$file \ " is a symlink to a directory\n "
280
+ warn qq( $Me : "$file " is a symlink to a directory\n " )
281
281
if $opt -> {T };
282
282
next FILE;
283
283
284
284
}
285
285
if (!$opt -> {r }) {
286
- warn " $Me : \ "$file \ " is a directory\n " ;
286
+ warn qq( $Me : "$file " is a directory\n ") ;
287
287
next FILE;
288
288
}
289
289
unless (opendir (DIR, $file )) {
@@ -317,7 +317,7 @@ FILE: while (defined ($file = shift(@_))) {
317
317
else {
318
318
$name = $file ;
319
319
unless (-e $file ) {
320
- warn qq( $Me : file "$file " does not exist\n ) unless $opt -> {' q' };
320
+ warn qq( $Me : "$file " does not exist\n ) unless $opt -> {' q' };
321
321
$Errors ++;
322
322
next FILE;
323
323
}
You can’t perform that action at this time.
0 commit comments