diff options
author | Corinna Vinschen <corinna@vinschen.de> | 2006-10-27 10:41:51 +0000 |
---|---|---|
committer | Corinna Vinschen <corinna@vinschen.de> | 2006-10-27 10:41:51 +0000 |
commit | 17f3068d4e54457e96e0f735742c7372c65ccf96 (patch) | |
tree | 7c1ee2ed4e586923872d01c1e8c20df9df3f75df /winsup/cygwin/winsup.h | |
parent | 6aea277648212464155528a9a120ba7b75536159 (diff) | |
download | cygnal-17f3068d4e54457e96e0f735742c7372c65ccf96.tar.gz cygnal-17f3068d4e54457e96e0f735742c7372c65ccf96.tar.bz2 cygnal-17f3068d4e54457e96e0f735742c7372c65ccf96.zip |
* dcrt0.cc (__api_fatal): Drop spare argument to __small_sprintf.
* smallprint.c (__small_vsprintf): Preserve GetLastError value.
* winsup.h (api_fatal): Simplify. Drop duplicate filename arg.
Diffstat (limited to 'winsup/cygwin/winsup.h')
-rw-r--r-- | winsup/cygwin/winsup.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/cygwin/winsup.h b/winsup/cygwin/winsup.h index 7382161df..4d103f3ed 100644 --- a/winsup/cygwin/winsup.h +++ b/winsup/cygwin/winsup.h @@ -154,7 +154,7 @@ extern unsigned int signal_shift_subtract; extern int __api_fatal_exit_val; #define set_api_fatal_return(n) do {extern int __api_fatal_exit_val; __api_fatal_exit_val = (n);} while (0) -#define api_fatal(fmt, args...) __api_fatal ("%P: *** " fmt,## args) +#define api_fatal(fmt, args...) __api_fatal (fmt,## args) #undef issep #define issep(ch) (strchr (" \t\n\r", (ch)) != NULL) |