aboutsummaryrefslogtreecommitdiffstats
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
commitbe8326b2e0e8702100d4c667ee749c8d28aed6f4 (patch)
treefa4433ac088fe1e2180ecde07d636658fc27fe81 /dln.c
parent5f9a6d1dee33e015f8750f38c46844047d9768b9 (diff)
downloadruby-be8326b2e0e8702100d4c667ee749c8d28aed6f4.tar.gz
* dln.c (dln_find_1): fixed commit miss.
git-svn-id: svn+ssh://ci.ruby-lang.org/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 f674fc97a0..f11e642c3f 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;