aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/fsec-print/print.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fsec-print/print.c b/src/fsec-print/print.c
index 5c244b000..a6aae5ecb 100644
--- a/src/fsec-print/print.c
+++ b/src/fsec-print/print.c
@@ -250,7 +250,7 @@ static void bpf_decode_args(const struct sock_filter *bpf, unsigned int line) {
250 break; 250 break;
251 case BPF_JMP: 251 case BPF_JMP:
252 if (BPF_OP(bpf->code) == BPF_JA) { 252 if (BPF_OP(bpf->code) == BPF_JA) {
253 printf("%.4u", (line + 1) + bpf->k); 253 printf("%.4x", (line + 1) + bpf->k);
254 } 254 }
255 else { 255 else {
256 const char *name = NULL; 256 const char *name = NULL;