diff options
author | Darrell Anderson <humanreadable@yahoo.com> | 2012-03-07 17:22:58 -0600 |
---|---|---|
committer | Darrell Anderson <humanreadable@yahoo.com> | 2012-03-07 17:22:58 -0600 |
commit | e15521d96b21cb0c771cce7cbe2ceb38f27c8844 (patch) | |
tree | d70ae645d1e414273f12736df3589cc96fdeebda /kio | |
parent | 563d4ecebe282b0062cbdb74413ef960401a25bf (diff) | |
download | tdelibs-e15521d96b21cb0c771cce7cbe2ceb38f27c8844.tar.gz tdelibs-e15521d96b21cb0c771cce7cbe2ceb38f27c8844.zip |
Add source code module name to stdout/stderr messages to improve readability.
Diffstat (limited to 'kio')
-rw-r--r-- | kio/kio/lex.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kio/kio/lex.c b/kio/kio/lex.c index 4b8cb21f7..99848a2f3 100644 --- a/kio/kio/lex.c +++ b/kio/kio/lex.c @@ -1584,7 +1584,7 @@ static void yy_fatal_error( msg ) char msg[]; #endif { - (void) fprintf( stderr, "%s\n", msg ); + (void) fprintf( stderr, "[lex] %s\n", msg ); exit( YY_EXIT_FAILURE ); } |