diff options
author | Steven Schubiger <stsc@refcnt.org> | 2013-01-25 11:03:31 +0100 |
---|---|---|
committer | Steven Schubiger <stsc@refcnt.org> | 2013-01-25 11:03:31 +0100 |
commit | 781ef6e57f5b1fdd3f355f27edfaae16e90cb903 (patch) | |
tree | 3cb452095ac910bccb33097a16b1020d07f8d77b | |
parent | be375bf84e772d39094d8eb477ed34630628eb09 (diff) | |
download | colorize-781ef6e57f5b1fdd3f355f27edfaae16e90cb903.tar.gz colorize-781ef6e57f5b1fdd3f355f27edfaae16e90cb903.tar.bz2 |
Capitalize first letter of diagnostics
-rw-r--r-- | colorize.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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) \ |