diff options
author | David Phillips <dbphillipsnz@gmail.com> | 2016-04-18 12:24:29 +1200 |
---|---|---|
committer | David Phillips <dbphillipsnz@gmail.com> | 2016-04-18 12:24:29 +1200 |
commit | 83e9348be530e55b5309b77373b08dadb0bf95e9 (patch) | |
tree | 6d5ced36d1dc99fcac2482ca4a1a6ca25c1f7d1e /fractal-gen.c | |
parent | 0f272f1492fd217e38eda4dcb6e1b8f1ff68e211 (diff) | |
download | fractal-gen-83e9348be530e55b5309b77373b08dadb0bf95e9.tar.xz |
Change error message for invalid generator
Diffstat (limited to 'fractal-gen.c')
-rw-r--r-- | fractal-gen.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/fractal-gen.c b/fractal-gen.c index e76f6be..d2d21f9 100644 --- a/fractal-gen.c +++ b/fractal-gen.c @@ -62,7 +62,8 @@ int main(int argc, char **argv) if (generator == NULL) { - fprintf(stderr, "Don't call this directly, call a symlink to me\n"); + fprintf(stderr, "Unknown fractal '%s' (perhaps try running symlink to me)\n", + bname); return 1; } |