summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgottox@rootkit.lan <gottox@rootkit.lan>2007-12-14 20:13:58 +0100
committergottox@rootkit.lan <gottox@rootkit.lan>2007-12-14 20:13:58 +0100
commit856c68dc8d193cc772dfe714f251ca2600b720c2 (patch)
treee024c242c1960174799963b6c84c90d038be0672
parent8a59ab99267a1c187cdedc80a332dd37f769267d (diff)
main returns now EXIT_SUCCESS
-rw-r--r--cmarkdown.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmarkdown.c b/cmarkdown.c
index 3ba4fef..6ff804d 100644
--- a/cmarkdown.c
+++ b/cmarkdown.c
@@ -529,6 +529,6 @@ main(int argc, char *argv[]) {
process(buffer,buffer+strlen(buffer),1);
putchar('\n');
free(buffer);
- return 0;
+ return EXIT_SUCCESS;
}