summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoreban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-02-07 04:00:58 +0000
committereban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-02-07 04:00:58 +0000
commit836c4f508ad80c53c01cf931c4f3c2346a8298e9 (patch)
tree242fb95c1fc40f0850bc41514c5a110627e3b16b
parent97975b51118d554f7049c175dfc8e67e1700fbfb (diff)
* dln.c: typo fix.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@7910 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--dln.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/dln.c b/dln.c
index d96c5a40d..efdbcc8d0 100644
--- a/dln.c
+++ b/dln.c
@@ -160,7 +160,7 @@ static int dln_errno;
#define DLN_ENOEXEC ENOEXEC /* Exec format error */
#define DLN_ECONFL 1201 /* Symbol name conflict */
-#define DLN_ENOINIT 1202 /* No inititalizer given */
+#define DLN_ENOINIT 1202 /* No initializer given */
#define DLN_EUNDEF 1203 /* Undefine symbol remains */
#define DLN_ENOTLIB 1204 /* Not a library file */
#define DLN_EBADLIB 1205 /* Malformed library file */
@@ -395,7 +395,7 @@ dln_init(prog)
if (c != '!') goto err_noexec;
p = buf;
- /* skip forwading spaces */
+ /* skip forwarding spaces */
while (read(fd, &c, 1) == 1) {
if (c == '\n') goto err_noexec;
if (c != '\t' && c != ' ') {