aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Phillips <david@sighup.nz>2017-02-12 21:27:14 +1300
committerDavid Phillips <david@sighup.nz>2017-02-12 21:27:14 +1300
commitacf76ca68bae0b9bd1911b382d26fce3d9947d36 (patch)
tree2dd1267aa0bb60cbb6ee1868d4ec27f04dace58c
parent713b2ba27388950c16860cede2ebb4a237708a7d (diff)
downloadfractal-gen-opencl-acf76ca68bae0b9bd1911b382d26fce3d9947d36.tar.xz
Fix misplaced %s in format
-rw-r--r--fractal-gen.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fractal-gen.c b/fractal-gen.c
index a5937cf..91a2f18 100644
--- a/fractal-gen.c
+++ b/fractal-gen.c
@@ -63,7 +63,7 @@ int run(unsigned int size, unsigned int iterations)
void die_help()
{
- fprintf(stderr, "Syntax:\n%s [-s size] [-i max_iteratons]\n");
+ fprintf(stderr, "Syntax:\nfractal-gen [-s size] [-i max_iteratons]\n");
exit(1);
}