X-Git-Url: https://code.delx.au/gnu-emacs/blobdiff_plain/11dde529083c0b3df2e8e91913426ed4975b77c3..8478885dfab16359b989e030949b4d485062f54b:/src/gnutls.h diff --git a/src/gnutls.h b/src/gnutls.h index 4adaad4897..fd696820ae 100644 --- a/src/gnutls.h +++ b/src/gnutls.h @@ -1,5 +1,5 @@ /* GnuTLS glue for GNU Emacs. - Copyright (C) 2010-2013 Free Software Foundation, Inc. + Copyright (C) 2010-2015 Free Software Foundation, Inc. This file is part of GNU Emacs. @@ -57,19 +57,19 @@ typedef enum do { \ if ((level) <= (max)) \ gnutls_log_function (level, "(Emacs) " string); \ - } while (0) + } while (false) #define GNUTLS_LOG2(level, max, string, extra) \ do { \ if ((level) <= (max)) \ gnutls_log_function2 (level, "(Emacs) " string, extra); \ - } while (0) + } while (false) #define GNUTLS_LOG2i(level, max, string, extra) \ do { \ if ((level) <= (max)) \ gnutls_log_function2i (level, "(Emacs) " string, extra); \ - } while (0) + } while (false) extern ptrdiff_t emacs_gnutls_write (struct Lisp_Process *proc, const char *buf, ptrdiff_t nbyte); @@ -82,8 +82,8 @@ extern void emacs_gnutls_transport_set_errno (gnutls_session_t state, int err); #endif extern Lisp_Object emacs_gnutls_deinit (Lisp_Object); -extern void syms_of_gnutls (void); - #endif +extern void syms_of_gnutls (void); + #endif