From 9c380ac229c5815437819b346fb468655a423747 Mon Sep 17 00:00:00 2001 From: Glenn Kasten Date: Tue, 17 Feb 2015 14:54:09 -0800 Subject: Remove spaces at end of line to match existing code Change-Id: Ib0903c11ac360682f2023f99532fb4b2e9fba66c --- tools/resampler_tools/fir.cpp | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'tools') diff --git a/tools/resampler_tools/fir.cpp b/tools/resampler_tools/fir.cpp index 3c04891..fcd5267 100644 --- a/tools/resampler_tools/fir.cpp +++ b/tools/resampler_tools/fir.cpp @@ -267,12 +267,15 @@ int main(int argc, char** argv) if (!format) { int64_t yi = toint(y, 1ULL<<(nc-1)); if (nc > 16) { - printf("0x%08x, ", int32_t(yi)); + printf("0x%08x,", int32_t(yi)); } else { - printf("0x%04x, ", int32_t(yi)&0xffff); + printf("0x%04x,", int32_t(yi)&0xffff); } } else { - printf("%.9g%s ", y, debug ? "," : "f,"); + printf("%.9g%s", y, debug ? "," : "f,"); + } + if (j != nzc-1) { + printf(" "); } } } -- cgit v1.1