summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorGlenn Kasten <gkasten@google.com>2015-02-17 14:54:09 -0800
committerGlenn Kasten <gkasten@google.com>2015-02-27 18:29:47 -0800
commit9c380ac229c5815437819b346fb468655a423747 (patch)
tree1c3f3fd5ea3559d082c373a3dd7ef887ee738639 /tools
parent5e83ef573a311a1f564d88d681d1022826729da5 (diff)
downloadframeworks_av-9c380ac229c5815437819b346fb468655a423747.zip
frameworks_av-9c380ac229c5815437819b346fb468655a423747.tar.gz
frameworks_av-9c380ac229c5815437819b346fb468655a423747.tar.bz2
Remove spaces at end of line to match existing code
Change-Id: Ib0903c11ac360682f2023f99532fb4b2e9fba66c
Diffstat (limited to 'tools')
-rw-r--r--tools/resampler_tools/fir.cpp9
1 files changed, 6 insertions, 3 deletions
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(" ");
}
}
}