summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorIvan Maidanski <ivmai@mail.ru>2021-10-18 21:09:10 +0300
committerIvan Maidanski <ivmai@mail.ru>2021-10-18 21:09:10 +0300
commit09fdbf154480c222d0c6409873bfe1888634cf3c (patch)
tree798a38377e563ca60d23645888edbbf0b2ca40bb /tools
parent6beefe83c068d0df4e487e68a1309fdff0176a05 (diff)
downloadbdwgc-09fdbf154480c222d0c6409873bfe1888634cf3c.tar.gz
Fix capital case of setjmp_test and gctest in README and comments
* Makefile.direct (HOSTCFLAGS): Start setjmp_test word with lower case in comment. * README.md (Installation and Portability): Likewise. * mach_dep.c (GC_with_callee_saves_pushed): Likewise. * tools/setjmp_t.c (main): Likewise. * Makefile.direct (setjmp_test): Start gctest word with lower case in comment. * OS2_MAKEFILE (CFLAGS): Likewise. * README.md (Installation and Portability): Likewise. * SMakefile.amiga (finalize.o): Likewise.
Diffstat (limited to 'tools')
-rw-r--r--tools/setjmp_t.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/setjmp_t.c b/tools/setjmp_t.c
index 254803ca..419bbb32 100644
--- a/tools/setjmp_t.c
+++ b/tools/setjmp_t.c
@@ -121,11 +121,11 @@ int main(void)
(void)SETJMP(b);
if (y == 1) {
if (x == 2) {
- printf("Setjmp-based generic mark_regs code probably won't work.\n");
+ printf("setjmp-based generic mark_regs code probably won't work.\n");
printf("But we rarely try that anymore. If you have getcontect()\n");
printf("this probably doesn't matter.\n");
} else if (x == 1) {
- printf("Setjmp-based register marking code may work.\n");
+ printf("setjmp-based register marking code may work.\n");
} else {
printf("Very strange setjmp implementation.\n");
}