diff options
author | Corinna Vinschen <corinna@vinschen.de> | 2018-03-05 17:50:52 +0100 |
---|---|---|
committer | Corinna Vinschen <corinna@vinschen.de> | 2018-03-05 17:50:52 +0100 |
commit | fe8e2c9b1f480c5b939574510b3ed10ea3c9028d (patch) | |
tree | 18f2b383ddefa61a95ed266044104393c38a330c | |
parent | 011fc3b508292ebdc972775a98ee3b22cd17e820 (diff) | |
download | cygnal-fe8e2c9b1f480c5b939574510b3ed10ea3c9028d.tar.gz cygnal-fe8e2c9b1f480c5b939574510b3ed10ea3c9028d.tar.bz2 cygnal-fe8e2c9b1f480c5b939574510b3ed10ea3c9028d.zip |
Cygwin: drop debug_printf statement from start_transaction
start_transaction is now defined in ntdll.h and we can't rely
on debug_printf being available
Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
-rw-r--r-- | winsup/cygwin/ntdll.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/winsup/cygwin/ntdll.h b/winsup/cygwin/ntdll.h index c89591f44..b322d4b9e 100644 --- a/winsup/cygwin/ntdll.h +++ b/winsup/cygwin/ntdll.h @@ -1668,10 +1668,7 @@ extern "C" RtlSetCurrentTransaction (trans); } else - { - debug_printf ("NtCreateTransaction failed, %y", status); - old_trans = trans = NULL; - } + old_trans = trans = NULL; } static inline NTSTATUS |