From e9e1a0cfcfb6a4dbff94a0a6d92cac98a58f0a21 Mon Sep 17 00:00:00 2001 From: Michael Ow Date: Wed, 19 Jan 2011 17:21:49 +0000 Subject: [PATCH] ICU-8281 Fix function name typo for Cygwin X-SVN-Rev: 29333 --- icu4c/source/tools/pkgdata/pkgdata.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/icu4c/source/tools/pkgdata/pkgdata.cpp b/icu4c/source/tools/pkgdata/pkgdata.cpp index 433285fd22..f20f017763 100644 --- a/icu4c/source/tools/pkgdata/pkgdata.cpp +++ b/icu4c/source/tools/pkgdata/pkgdata.cpp @@ -1177,7 +1177,7 @@ static int32_t pkg_generateLibraryFile(const char *targetDir, const char mode, c uprv_strlen(pkgDataFlags[LD_SONAME][0] == 0 ? "" : libFileNames[LIB_FILE_VERSION_MAJOR]) + uprv_strlen(pkgDataFlags[RPATH_FLAGS]) + uprv_strlen(pkgDataFlags[BIR_FLAGS]) + BUFFER_PADDING_SIZE; #ifdef U_CYGWIN - length += uprv_strlen(targetDir) + uprv_stren(libFileNames[LIB_FILE_CYGWIN_VERSION]); + length += uprv_strlen(targetDir) + uprv_strlen(libFileNames[LIB_FILE_CYGWIN_VERSION]); #endif if ((cmd = (char *)uprv_malloc(sizeof(char) * length)) == NULL) { fprintf(stderr, "Unable to allocate memory for command.\n");