diff options
author | Christopher Faylor <me@cgf.cx> | 2006-05-28 15:50:14 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2006-05-28 15:50:14 +0000 |
commit | 34f5d0879c2122899bb24c40691f06a8388ac623 (patch) | |
tree | 67d7d29711bde7049cb0cdc5e5fa68079c5de371 /winsup/cygwin/miscfuncs.cc | |
parent | 29d1e62ed2b11f99c3169d65608478941c5c7cc4 (diff) | |
download | cygnal-34f5d0879c2122899bb24c40691f06a8388ac623.tar.gz cygnal-34f5d0879c2122899bb24c40691f06a8388ac623.tar.bz2 cygnal-34f5d0879c2122899bb24c40691f06a8388ac623.zip |
white space
Diffstat (limited to 'winsup/cygwin/miscfuncs.cc')
-rw-r--r-- | winsup/cygwin/miscfuncs.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/cygwin/miscfuncs.cc b/winsup/cygwin/miscfuncs.cc index 0f5804ed6..f7ac0c642 100644 --- a/winsup/cygwin/miscfuncs.cc +++ b/winsup/cygwin/miscfuncs.cc @@ -217,7 +217,7 @@ int __stdcall sys_wcstombs (char *tgt, int tlen, const WCHAR *src, int slen) { int ret; - + ret = WideCharToMultiByte (get_cp (), 0, src, slen, tgt, tlen, NULL, NULL); if (ret) tgt[ret < tlen ? ret : tlen - 1] = '\0'; |