From: Dmitry V. Levin Date: Mon, 16 May 2016 23:31:59 +0000 (+0000) Subject: bfin: fix printing of invalid flags argument of sram_alloc syscall X-Git-Tag: v4.12~128 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5e2fc6228eda8e6170571edc3d46649ab709a00c;p=strace bfin: fix printing of invalid flags argument of sram_alloc syscall * sram_alloc.c (SYS_FUNC(sram_alloc)): Print 2nd argument using printflags_long. --- diff --git a/sram_alloc.c b/sram_alloc.c index ec463a68..969e10ee 100644 --- a/sram_alloc.c +++ b/sram_alloc.c @@ -11,7 +11,7 @@ SYS_FUNC(sram_alloc) /* size */ tprintf("%lu, ", tcp->u_arg[0]); /* flags */ - printflags(sram_alloc_flags, tcp->u_arg[1], "???_SRAM"); + printflags_long(sram_alloc_flags, tcp->u_arg[1], "???_SRAM"); return RVAL_DECODED | RVAL_HEX; }