aboutsummaryrefslogtreecommitdiffstats
path: root/colorize.c
diff options
context:
space:
mode:
authorGravatar Steven Schubiger <stsc@refcnt.org> 2013-01-25 11:03:31 +0100
committerGravatar Steven Schubiger <stsc@refcnt.org> 2013-01-25 11:03:31 +0100
commit781ef6e57f5b1fdd3f355f27edfaae16e90cb903 (patch)
tree3cb452095ac910bccb33097a16b1020d07f8d77b /colorize.c
parentbe375bf84e772d39094d8eb477ed34630628eb09 (diff)
downloadcolorize-781ef6e57f5b1fdd3f355f27edfaae16e90cb903.tar.gz
colorize-781ef6e57f5b1fdd3f355f27edfaae16e90cb903.tar.bz2
Capitalize first letter of diagnostics
Diffstat (limited to 'colorize.c')
-rw-r--r--colorize.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/colorize.c b/colorize.c
index 7bf77b8..041ecdb 100644
--- a/colorize.c
+++ b/colorize.c
@@ -65,7 +65,7 @@
#if DEBUG
# define MEM_ALLOC_FAIL(file, line) do { \
- fprintf (stderr, "memory allocation failure in source file %s, line %d\n", file, line); \
+ fprintf (stderr, "Memory allocation failure in source file %s, line %d\n", file, line); \
exit (2); \
} while (false);
#else
@@ -76,7 +76,7 @@
#endif
#define ABORT_TRACE() \
- fprintf (stderr, "aborting in source file %s, line %d\n", __FILE__, __LINE__); \
+ fprintf (stderr, "Aborting in source file %s, line %d\n", __FILE__, __LINE__); \
abort (); \
#define CHECK_COLORS_RANDOM(color1, color2) \