aboutsummaryrefslogtreecommitdiff
path: root/src/lib/cc/torint.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/cc/torint.h')
-rw-r--r--src/lib/cc/torint.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/lib/cc/torint.h b/src/lib/cc/torint.h
index 9a66aada18..523f378ed7 100644
--- a/src/lib/cc/torint.h
+++ b/src/lib/cc/torint.h
@@ -96,9 +96,9 @@ typedef int32_t ssize_t;
# else
# define TOR_PRIuSZ PRIu32
# endif
-#else
+#else /* !(defined(_WIN32)) */
# define TOR_PRIuSZ "zu"
-#endif
+#endif /* defined(_WIN32) */
#ifdef _WIN32
# ifdef _WIN64
@@ -106,9 +106,9 @@ typedef int32_t ssize_t;
# else
# define TOR_PRIdSZ PRId32
# endif
-#else
+#else /* !(defined(_WIN32)) */
# define TOR_PRIdSZ "zd"
-#endif
+#endif /* defined(_WIN32) */
#ifndef SSIZE_MAX
#if (SIZEOF_SIZE_T == 4)