diff options
author | Werner Koch <[email protected]> | 1998-10-01 07:23:00 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 1998-10-01 07:23:00 +0000 |
commit | 6f73ec963a6d01e16599a62661dd2a74303ed65c (patch) | |
tree | c60f67d0da185df63ac2a60a156e60eebe94b82b /util/logger.c | |
parent | *** empty log message *** (diff) | |
download | gnupg-6f73ec963a6d01e16599a62661dd2a74303ed65c.tar.gz gnupg-6f73ec963a6d01e16599a62661dd2a74303ed65c.zip |
*** empty log message ***
Diffstat (limited to 'util/logger.c')
-rw-r--r-- | util/logger.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/util/logger.c b/util/logger.c index 0f181d8a5..aabeaec7d 100644 --- a/util/logger.c +++ b/util/logger.c @@ -173,13 +173,13 @@ g10_log_bug( const char *fmt, ... ) void g10_log_bug0( const char *file, int line, const char *func ) { - log_bug("Ohhhh jeeee ... (%s:%d:%s)\n", file, line, func ); + log_bug("you found a bug ... (%s:%d:%s)\n", file, line, func ); } #else void g10_log_bug0( const char *file, int line ) { - log_bug("Ohhhh jeeee ... (%s:%d)\n", file, line); + log_bug("you found a bug ... (%s:%d)\n", file, line); } #endif |