diff options
| author | Glenn Kasten <gkasten@google.com> | 2015-02-17 14:53:30 -0800 | 
|---|---|---|
| committer | Glenn Kasten <gkasten@google.com> | 2015-02-27 18:29:47 -0800 | 
| commit | 393d4d2082351b0f63ff19fbe82308481e508b3e (patch) | |
| tree | ac147184a5c657cbb0e87f4c5399206ee6cc1432 | |
| parent | 6506d19004ce9d6943b80721c37e26532c6e6bdf (diff) | |
| download | frameworks_av-393d4d2082351b0f63ff19fbe82308481e508b3e.zip frameworks_av-393d4d2082351b0f63ff19fbe82308481e508b3e.tar.gz frameworks_av-393d4d2082351b0f63ff19fbe82308481e508b3e.tar.bz2  | |
Command line display now includes name of program
Change-Id: I0d20924c3b3de24d88f7524693dc997231e92023
| -rw-r--r-- | tools/resampler_tools/fir.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/resampler_tools/fir.cpp b/tools/resampler_tools/fir.cpp index 264382f..6581328 100644 --- a/tools/resampler_tools/fir.cpp +++ b/tools/resampler_tools/fir.cpp @@ -231,7 +231,7 @@ int main(int argc, char** argv)      // generate the right half of the filter      if (!debug) {          printf("// cmd-line: "); -        for (int i=1 ; i<argc ; i++) { +        for (int i=0 ; i<argc ; i++) {              printf("%s ", argv[i]);          }          printf("\n");  | 
