diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2009-02-22 14:23:33 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2009-02-22 14:23:33 +0000 |
commit | 12d2c8ba41edb5a02a7471e39d67ece2894492d8 (patch) | |
tree | 5b2e87ac380efcb2141c4fab97e86c25c7214799 /dln.c | |
parent | 624d07b0e4257a5261558a154eddd464d85e6174 (diff) | |
download | ruby-12d2c8ba41edb5a02a7471e39d67ece2894492d8.tar.gz |
stripped trailing spaces.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@22552 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'dln.c')
-rw-r--r-- | dln.c | 20 |
1 files changed, 10 insertions, 10 deletions
@@ -766,7 +766,7 @@ load_1(int fd, long disp, const char *need_init) } } /* end.. look it up */ else { /* is static */ - switch (R_SYMBOL(rel)) { + switch (R_SYMBOL(rel)) { case N_TEXT: case N_DATA: datum = block; @@ -1158,7 +1158,7 @@ aix_loaderror(const char *pathname) char *message[8], errbuf[1024]; int i,j; - struct errtab { + struct errtab { int errnum; char *errstr; } load_errtab[] = { @@ -1181,7 +1181,7 @@ aix_loaderror(const char *pathname) snprintf(errbuf, 1024, "load failed - %s ", pathname); - if (!loadquery(1, &message[0], sizeof(message))) + if (!loadquery(1, &message[0], sizeof(message))) ERRBUF_APPEND(strerror(errno)); for(i = 0; message[i] && *message[i]; i++) { int nerr = atoi(message[i]); @@ -1189,7 +1189,7 @@ aix_loaderror(const char *pathname) if (nerr == load_errtab[i].errnum && load_errtab[i].errstr) ERRBUF_APPEND(load_errtab[i].errstr); } - while (isdigit(*message[i])) message[i]++; + while (isdigit(*message[i])) message[i]++; ERRBUF_APPEND(message[i]); ERRBUF_APPEND("\n"); } @@ -1339,7 +1339,7 @@ dln_load(const char *file) #define DLN_DEFINED /*---------------------------------------------------- By SHIROYAMA Takayuki Psi@fortune.nest.or.jp - + Special Thanks... Yu tomoak-i@is.aist-nara.ac.jp, Mi hisho@tasihara.nest.or.jp, @@ -1354,9 +1354,9 @@ dln_load(const char *file) char *object_files[2] = {NULL, NULL}; void (*init_fct)(); - + object_files[0] = (char*)file; - + s = NXOpenFile(2,NX_WRITEONLY); /* Load object file, if return value ==0 , load failed*/ @@ -1403,7 +1403,7 @@ dln_load(const char *file) /* lookup the initial function */ if(!NSIsSymbolNameDefined(buf)) { rb_loaderror("Failed to lookup Init function %.200s",file); - } + } init_fct = NSAddressOfSymbol(NSLookupAndBindSymbol(buf)); (*init_fct)(); @@ -1425,7 +1425,7 @@ dln_load(const char *file) rb_loaderror("Failed to load add_on %.200s error_code=%x", file, img_id); } - + /* find symbol for module initialize function. */ /* The Be Book KernelKit Images section described to use B_SYMBOL_TYPE_TEXT for symbol of function, not @@ -1608,7 +1608,7 @@ dln_find_1(const char *fname, const char *path, char *fbuf, int size, if (*dp == '~' && (l == 1 || #if defined(DOSISH) - dp[1] == '\\' || + dp[1] == '\\' || #endif dp[1] == '/')) { char *home; |