FreeCalypso > hg > freecalypso-tools
changeset 275:81da9717babe
fc-tmsync: missed newline at the end of rfpr output
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Fri, 17 Nov 2017 00:03:21 +0000 |
parents | f22874b351b7 |
children | d332fbf5c145 |
files | rvinterf/etmsync/l1tmcmd.c |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/rvinterf/etmsync/l1tmcmd.c Thu Nov 16 23:44:48 2017 +0000 +++ b/rvinterf/etmsync/l1tmcmd.c Fri Nov 17 00:03:21 2017 +0000 @@ -141,10 +141,10 @@ if (rc) return(rc); if (val >= 0x8000) - printf("read value: 0x%04X (%u or %d)", val, val, + printf("read value: 0x%04X (%u or %d)\n", val, val, (int)val - 65536); else - printf("read value: 0x%04X (%u)", val, val); + printf("read value: 0x%04X (%u)\n", val, val); return(0); }