summaryrefslogtreecommitdiff
path: root/src/main.c
diff options
context:
space:
mode:
authorKevin Burke <kev@inburke.com>2016-05-26 08:07:19 -0700
committerKevin Burke <kev@inburke.com>2016-05-26 08:07:19 -0700
commitf2172561d3e1c518c02ec770e37b17531534ba96 (patch)
tree4e233babb4ca2ab9c76d67bb3d6c08fdce78b815 /src/main.c
parent82ea9598bf55320d1161d8ec672c2ac678e2d0f4 (diff)
Add 2016 to copyright
I thought I had an outdated version of the binary because it printed 2015 for the version string.
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.c b/src/main.c
index 5716e18..ff752e5 100644
--- a/src/main.c
+++ b/src/main.c
@@ -85,7 +85,7 @@ int main(int argc, char *argv[]) {
for (i = 1; i < argc; i++) {
if (strcmp(argv[i], "--version") == 0) {
printf("cmark %s", CMARK_VERSION_STRING);
- printf(" - CommonMark converter\n(C) 2014, 2015 John MacFarlane\n");
+ printf(" - CommonMark converter\n(C) 2014-2016 John MacFarlane\n");
exit(0);
} else if (strcmp(argv[i], "--sourcepos") == 0) {
options |= CMARK_OPT_SOURCEPOS;