tools/firewire: nosy-dump: increment program version

Since version 0.3 from Kristian's repository, there should actually be
no change in functionality except for the x86-64 fix. Nevertheless,
make it distinct from the original nosy-dump --- just in case and also
because of potential future changes.

Signed-off-by: Stefan Richter <stefanr@s5r6.in-berlin.de>

+2 -2
+2 -2
tools/firewire/Makefile
··· 1 - version = 0.3 2 prefix = /usr 3 4 CC = gcc 5 6 all : nosy-dump 7 8 nosy-dump : CFLAGS = -Wall -O2 -g 9 - nosy-dump : CPPFLAGS = -DVERSION=\"$(version)\" -I../../drivers/firewire 10 nosy-dump : LDFLAGS = -g 11 nosy-dump : LDLIBS = -lpopt 12
··· 1 prefix = /usr 2 + nosy-dump-version = 0.4 3 4 CC = gcc 5 6 all : nosy-dump 7 8 nosy-dump : CFLAGS = -Wall -O2 -g 9 + nosy-dump : CPPFLAGS = -DVERSION=\"$(nosy-dump-version)\" -I../../drivers/firewire 10 nosy-dump : LDFLAGS = -g 11 nosy-dump : LDLIBS = -lpopt 12