* Fix help in radiff2

This commit is contained in:
pancake 2011-04-18 22:46:21 +02:00
parent 450764d0c6
commit 616395cca3
4 changed files with 15 additions and 11 deletions

View File

@ -8,6 +8,7 @@ Contributors: (sorted by length)
================================
- esteve <estlack.org>
- Glyn Kennington
- @schrotthaufen
- elektranox
- neuroflip
- rvalles

4
TODO
View File

@ -10,6 +10,10 @@ To wipe:
- linestyle?? for disassembly lines
- remove libr/vm and libr/db
To fix:
=======
* reading with io.va=true on out of foo results in shitty buffers
To do:
======
* libmagic internal :? -- find a decent implementation and adopt it

View File

@ -5,9 +5,7 @@
static ut32 count = 0;
static int cb(struct r_diff_t *d, void *user,
struct r_diff_op_t *op)
{
static int cb(RDiff *d, void *user, RDiffOp *op) {
int i, rad = (int)(size_t)user;
if (count) {
count++;
@ -88,14 +86,14 @@ static void diff_bins(RCore *c, RCore *c2) {
static int show_help(int line) {
printf ("Usage: radiff2 [-nsdl] [file] [file]\n");
if (!line) printf (
// " -l diff lines of text\n"
" -s calculate text distance\n"
" -c count of changes\n"
" -r radare commands\n"
" -d use delta diffing\n"
" -g graph diff\n"
" -v Use vaddr\n"
" -V show version information\n");
// " -l diff lines of text\n"
" -s calculate text distance\n"
" -c count of changes\n"
" -r radare commands\n"
" -d use delta diffing\n"
" -g [sym] graph diff\n"
" -v use vaddr\n"
" -V show version information\n");
return 1;
}

View File

@ -40,6 +40,7 @@ IFEQ USEROSTYPE auto ; {
USEROSTYPE = gnulinux ;
}{
IFEQ HOST_OS gnu ; {
(( GNU / HURD ))
USEROSTYPE = gnulinux ;
}{
IFEQ HOST_OS gnu/kfreebsd ; {