diff options
author | Shawn O. Pearce <spearce@spearce.org> | 2006-12-21 19:48:32 -0500 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-12-21 22:59:34 -0800 |
commit | fa39b6b5b11f9b580c515a7b4a8e4eb8eaa79b75 (patch) | |
tree | 1b01d4e00ef4367a922de3f7a0e553bff2266073 /git-compat-util.h | |
parent | 51dcaa9686d9ff591e9d051e6090d8529bc263a5 (diff) | |
download | git-fa39b6b5b11f9b580c515a7b4a8e4eb8eaa79b75.tar.gz |
Introduce a global level warn() function.
Like the existing error() function the new warn() function can be
used to describe a situation that probably should not be occuring,
but which the user (and Git) can continue to work around without
running into too many problems.
An example situation is a bad commit SHA1 found in a reflog.
Attempting to read this record out of the reflog isn't really an
error as we have skipped over it in the past.
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'git-compat-util.h')
-rw-r--r-- | git-compat-util.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/git-compat-util.h b/git-compat-util.h index c66e0a4247..a55b923894 100644 --- a/git-compat-util.h +++ b/git-compat-util.h @@ -71,10 +71,12 @@ extern void usage(const char *err) NORETURN; extern void die(const char *err, ...) NORETURN __attribute__((format (printf, 1, 2))); extern int error(const char *err, ...) __attribute__((format (printf, 1, 2))); +extern void warn(const char *err, ...) __attribute__((format (printf, 1, 2))); extern void set_usage_routine(void (*routine)(const char *err) NORETURN); extern void set_die_routine(void (*routine)(const char *err, va_list params) NORETURN); extern void set_error_routine(void (*routine)(const char *err, va_list params)); +extern void set_warn_routine(void (*routine)(const char *warn, va_list params)); #ifdef NO_MMAP |