aboutsummaryrefslogtreecommitdiffstats
path: root/src/yawa.h
diff options
context:
space:
mode:
authorJohannes Löthberg <johannes@kyriasis.com>2014-11-11 01:03:43 +0100
committerJohannes Löthberg <johannes@kyriasis.com>2014-11-11 01:03:43 +0100
commit488be6bee4be864ca96bf9ab0f88ec323b06c6e5 (patch)
treec90fbe6eae8f59f52c18fe0f1f7ebb86b0aa0cf0 /src/yawa.h
parentcf20a1795df2d98f1d7004c98c4a46f1f105a162 (diff)
downloadyawa-488be6bee4be864ca96bf9ab0f88ec323b06c6e5.tar.xz
Opening curl braces should be on the same line
Diffstat (limited to 'src/yawa.h')
-rw-r--r--src/yawa.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/yawa.h b/src/yawa.h
index dd80967..7cafd2c 100644
--- a/src/yawa.h
+++ b/src/yawa.h
@@ -71,8 +71,7 @@ struct arguments {
};
// Order of fields: {NAME, KEY, ARG, FLAGS, DOC, GROUP}.
-static struct argp_option options[] =
-{
+static struct argp_option options[] = {
{0, 0, 0, 0, "Gradients:", 1},
{"add", 'a', "COLOR", 0, "Add color to range using distance 1", 1},
// TODO: Figure out what to do about `-addd <color> <distance>
@@ -104,4 +103,5 @@ static struct argp_option options[] =
{"write", 'w', "FILENAME", 0, "Write the current image to a file", -1}, // Not implemented
{0, 0, 0, 0, 0, 0}
};
+
#endif