Set target to argv[0] - this is a bit more clear

This commit is contained in:
sin 2013-09-03 14:01:01 +01:00
parent 6ba6b731c1
commit 818794af45

View File

@ -104,7 +104,7 @@ main(int argc, char *argv[])
target = argv[1];
if (!target) {
target = source;
target = argv[0];
source = NULL;
if (stat(target, &st1) < 0)
eprintf("stat %s:", target);