aboutsummaryrefslogtreecommitdiffstats
path: root/gpgme/w32-io.c
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--gpgme/w32-io.c10
1 files changed, 4 insertions, 6 deletions
diff --git a/gpgme/w32-io.c b/gpgme/w32-io.c
index 6f56438a..d25b6e42 100644
--- a/gpgme/w32-io.c
+++ b/gpgme/w32-io.c
@@ -38,12 +38,10 @@
#include "io.h"
-/*
- * We assume that a HANDLE can be represented by an int which should be true
- * for all i386 systems (HANDLE is defined as void *) and these are the only
- * systems for which Windows is available.
- * Further we assume that -1 denotes an invalid handle.
- */
+/* We assume that a HANDLE can be represented by an int which should
+ be true for all i386 systems (HANDLE is defined as void *) and
+ these are the only systems for which Windows is available. Further
+ we assume that -1 denotes an invalid handle. */
#define fd_to_handle(a) ((HANDLE)(a))
#define handle_to_fd(a) ((int)(a))