diff options
author | Eric Biederman <ebiederm@xmission.com> | 2003-04-26 02:14:06 +0000 |
---|---|---|
committer | Eric Biederman <ebiederm@xmission.com> | 2003-04-26 02:14:06 +0000 |
commit | 2c791ce2c104b529be4485b8480a2ad85ec32d51 (patch) | |
tree | 616dd86b48d4915f112cf9477bc2b1d0eba71b97 /util/nrv2b/nrv2b.c | |
parent | 501eb25247a86a76ca84ac31c10c40384b6fde95 (diff) |
- Minor bug fixes
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@801 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'util/nrv2b/nrv2b.c')
-rw-r--r-- | util/nrv2b/nrv2b.c | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/util/nrv2b/nrv2b.c b/util/nrv2b/nrv2b.c index f12a4f5eb0..fca16b4e96 100644 --- a/util/nrv2b/nrv2b.c +++ b/util/nrv2b/nrv2b.c @@ -783,8 +783,8 @@ find_match ( struct ucl_compress *c, struct ucl_swd *s, break; if (in != m) if (memcmp(in,ip,c->m_len+1) == 0) - printf("%p %p %p -%5d\n",in,ip,m,c->m_len); + printf("%p %p %p %5d\n", + in, ip, m, c->m_len); in++; } @@ -1445,11 +1445,8 @@ int main(int argc, char *argv[]) rewind(infile = f); } else if (argc != 4) { - Fprintf((stderr, "'lzhuf e file1 file2' encodes file1 into -file2.\n" - - "'lzhuf d file2 file1' decodes file2 into -file1.\n")); + Fprintf((stderr, "'nrv2b e file1 file2' encodes file1 into file2.\n" + "'nrv2b d file2 file1' decodes file2 into file1.\n")); return EXIT_FAILURE; } |