Explorar el Código

Prefer single-quotes where \n is used

Alois Mahdal hace 6 años
padre
commit
f4c9cb7593
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1
    1
      bin/dissect_url

+ 1
- 1
bin/dissect_url Ver fichero

@@ -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