Rename function variable from cr (carriage return, '\r') to newline, because this is what it is. Signed-off-by: Stefan Berger <stefanb@xxxxxxxxxxxxx> --- src/libimaevm.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/libimaevm.c b/src/libimaevm.c index 9a6739b..b40b6d8 100644 --- a/src/libimaevm.c +++ b/src/libimaevm.c @@ -90,14 +90,14 @@ struct libimaevm_params imaevm_params = { static void __attribute__ ((constructor)) libinit(void); -void imaevm_do_hexdump(FILE *fp, const void *ptr, int len, bool cr) +void imaevm_do_hexdump(FILE *fp, const void *ptr, int len, bool newline) { int i; uint8_t *data = (uint8_t *) ptr; for (i = 0; i < len; i++) fprintf(fp, "%02x", data[i]); - if (cr) + if (newline) fprintf(fp, "\n"); } -- 2.30.2