summaryrefslogtreecommitdiff
path: root/misc.c
diff options
context:
space:
mode:
authorIvan Maidanski <ivmai@mail.ru>2014-01-31 21:04:28 +0400
committerIvan Maidanski <ivmai@mail.ru>2014-02-01 00:34:58 +0400
commit2473707be5dec4cb480b11377a5c4f98edf8a479 (patch)
tree98625ac1dd093ba0a67c0422ed9db191bceb8b0d /misc.c
parent04879212fb2e3418c1c4dc2f3bc4211476ea0560 (diff)
downloadbdwgc-2473707be5dec4cb480b11377a5c4f98edf8a479.tar.gz
Fix 'e.g.' typos in comments and documentation
* doc/README.cmake: Fix typo (e.g.). * doc/README.solaris2: Likewise. * doc/README.solaris2: Likewise. * doc/README.win32: Likewise. * include/gc.h (GC_register_my_thread): Fix typo in a comment (e.g.). * include/leak_detector.h: Likewise. * misc.c (GC_VSNPRINTF): Likewise. * pthread_stop_world.c (GC_unblock_gc_signals): Likewise.
Diffstat (limited to 'misc.c')
-rw-r--r--misc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/misc.c b/misc.c
index 620f686c..1ca9dd1b 100644
--- a/misc.c
+++ b/misc.c
@@ -1506,7 +1506,7 @@ GC_API void GC_CALL GC_enable_incremental(void)
#define BUFSZ 1024
#ifdef NO_VSNPRINTF
- /* In case this function is missing (eg., in DJGPP v2.0.3). */
+ /* In case this function is missing (e.g., in DJGPP v2.0.3). */
# define GC_VSNPRINTF(buf, bufsz, format, args) vsprintf(buf, format, args)
#elif defined(_MSC_VER)
# ifdef MSWINCE