aboutsummaryrefslogtreecommitdiffstats
path: root/wsutil
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2013-05-10 02:41:22 +0000
committerGuy Harris <guy@alum.mit.edu>2013-05-10 02:41:22 +0000
commit4422348ebcfb0cbbe26d1c6229e122ba2dad473d (patch)
treebe7f0c7605157857e811016ae044918fc4593e0c /wsutil
parent518faee2e7db440c82658e6d9db753e1d795465c (diff)
Add some comments to #else and #endif to make it clearer what's going
on. svn path=/trunk/; revision=49223
Diffstat (limited to 'wsutil')
-rw-r--r--wsutil/crash_info.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/wsutil/crash_info.c b/wsutil/crash_info.c
index d91c7e9041..386d805d21 100644
--- a/wsutil/crash_info.c
+++ b/wsutil/crash_info.c
@@ -138,7 +138,7 @@ struct crashreporter_annotations_t gCRAnnotations
};
#define CRSetCrashLogMessage(m) _crc_make_setter(message, m)
-#endif
+#endif /* 0 */
void
ws_add_crash_info(const char *fmt, ...)
@@ -160,7 +160,7 @@ ws_add_crash_info(const char *fmt, ...)
}
}
-#else
+#else /* __APPLE__ */
/*
* Perhaps Google Breakpad (http://code.google.com/p/google-breakpad/) or
* other options listed at
@@ -171,4 +171,4 @@ void
ws_add_crash_info(const char *fmt _U_, ...)
{
}
-#endif
+#endif /* __APPLE__ */