]> git.ipfire.org Git - people/stevee/network.git/commitdiff
interrupts: Fix passing of command line args with $@
authorMichael Tremer <michael.tremer@ipfire.org>
Fri, 18 Aug 2017 17:37:32 +0000 (17:37 +0000)
committerMichael Tremer <michael.tremer@ipfire.org>
Fri, 18 Aug 2017 17:37:54 +0000 (17:37 +0000)
Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
src/functions/functions.interrupts

index 6280235ff624acc9c74afbf27d6d99bfac9d4a35..83a57b35145888fad075f1e4ea58832c81789967 100644 (file)
@@ -103,7 +103,7 @@ __bitmap_to_processor_ids() {
 }
 
 __processor_id_to_bitmap() {
-       hex $(( 1 << "$@" ))
+       hex $(( 1 << $@ ))
 }
 
 interrupt_set_smp_affinity() {