summaryrefslogtreecommitdiffstats
path: root/dln.c
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
commit6e2f5ca0ced32b85ede9a73c7603f2338767236e (patch)
treefa4433ac088fe1e2180ecde07d636658fc27fe81 /dln.c
parentda5a0245cf2c41aa95a532e974b245feab51a2ad (diff)
downloadruby-6e2f5ca0ced32b85ede9a73c7603f2338767236e.tar.gz
ruby-6e2f5ca0ced32b85ede9a73c7603f2338767236e.tar.xz
ruby-6e2f5ca0ced32b85ede9a73c7603f2338767236e.zip
* dln.c (dln_find_1): fixed commit miss.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@25887 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'dln.c')
-rw-r--r--dln.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/dln.c b/dln.c
index f674fc97a..f11e642c3 100644
--- a/dln.c
+++ b/dln.c
@@ -1561,7 +1561,7 @@ dln_find_1(const char *fname, const char *path, char *fbuf, size_t size,
#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;