Browse Source

Prefer single-quotes where \n is used

Alois Mahdal 5 years ago
parent
commit
f4c9cb7593
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      bin/dissect_url

+ 1
- 1
bin/dissect_url View File

@@ -20,7 +20,7 @@ main() {
20 20
         do
21 21
             if [[ -z "$url" ]]; then exit 0; fi
22 22
             i=`expr $i + 1`
23
-            printf "=== url %02d =============================================\n" $i
23
+            printf '=== url %02d =============================================\n' $i
24 24
             dissect "$url"
25 25
         done
26 26
     fi