diff options
Diffstat (limited to 'regress/libexec/ld.so')
-rw-r--r-- | regress/libexec/ld.so/constructor/libab/ab.C | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/regress/libexec/ld.so/constructor/libab/ab.C b/regress/libexec/ld.so/constructor/libab/ab.C index 574d67fbbee..a6903d47a28 100644 --- a/regress/libexec/ld.so/constructor/libab/ab.C +++ b/regress/libexec/ld.so/constructor/libab/ab.C @@ -1,7 +1,7 @@ /* * Public Domain 2003 Dale Rahn * - * $OpenBSD: ab.C,v 1.1 2003/02/01 19:56:17 drahn Exp $ + * $OpenBSD: ab.C,v 1.2 2003/02/18 13:14:42 jmc Exp $ */ #include "iostream.h" @@ -13,7 +13,7 @@ extern int a; BB::BB(char *str) { if (a == 0) { - cout << "A not intialized in B constructors " << a << "\n"; + cout << "A not initialized in B constructors " << a << "\n"; exit(1); } } |