summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-11-23 01:55:17 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-11-23 01:55:17 +0000
commit83bd1353ce58010c8ce79057784290766c9eea2e (patch)
tree8ce53281fe1db99bd6f1fac68b03ea517ca39782
parent1ef1584bdfc737722a113102802136694070cfb9 (diff)
* dln.c (dln_find_1): fixed commit miss.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@25887 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--dln.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/dln.c b/dln.c
index abfa0430d9..2838a4932f 100644
--- a/dln.c
+++ b/dln.c
@@ -1712,7 +1712,7 @@ dln_find_1(fname, path, fbuf, size, exe_flag)
#endif
static const char pathname_too_long[] = "openpath: pathname too long (ignored)\n\
-\tDirectory \"%.*s\"\n\tFile \"%s\"\n"
+\tDirectory \"%.*s\"\n\tFile \"%s\"\n";
#define PATHNAME_TOO_LONG() fprintf(stderr, pathname_too_long, (int)(bp - fbuf), fbuf, fname)
#define RETURN_IF(expr) if (expr) return (char *)fname;