From: Michael Tremer Date: Fri, 18 Aug 2017 17:37:32 +0000 (+0000) Subject: interrupts: Fix passing of command line args with $@ X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=9e6e8d862405fdc1a03b8997c3cfdad946c29120;p=people%2Fjschlag%2Fnetwork.git interrupts: Fix passing of command line args with $@ Signed-off-by: Michael Tremer --- diff --git a/src/functions/functions.interrupts b/src/functions/functions.interrupts index 6280235..83a57b3 100644 --- a/src/functions/functions.interrupts +++ b/src/functions/functions.interrupts @@ -103,7 +103,7 @@ __bitmap_to_processor_ids() { } __processor_id_to_bitmap() { - hex $(( 1 << "$@" )) + hex $(( 1 << $@ )) } interrupt_set_smp_affinity() {