diff options
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; } |