Skip to content
This repository was archived by the owner on Jan 17, 2019. It is now read-only.

Commit 3bf2641

Browse files
committed
logger: Add support for 4 parameters passed to log message.
Signed-off-by: ArturX Kloniecki <arturx.kloniecki@linux.intel.com>
1 parent e37aa3f commit 3bf2641

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

rmbox/logger_convert.c

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -135,6 +135,10 @@ static void print_entry_params(FILE *out_fd, struct dma_log dma_log,
135135
fprintf(out_fd, entry.text, entry.params[0], entry.params[1],
136136
entry.params[2]);
137137
break;
138+
case 4:
139+
fprintf(out_fd, entry.text, entry.params[0], entry.params[1],
140+
entry.params[2], entry.params[3]);
141+
break;
138142
}
139143
fprintf(out_fd, "\n");
140144
}

0 commit comments

Comments
 (0)