diff options
author | Corinna Vinschen <corinna@vinschen.de> | 2010-02-09 11:44:03 +0000 |
---|---|---|
committer | Corinna Vinschen <corinna@vinschen.de> | 2010-02-09 11:44:03 +0000 |
commit | 3d9e3644ee302a25b177646bf85fd5fce135041b (patch) | |
tree | 5546943573e8edb7ba823621210bde5288990213 /winsup/cygwin/nlsfuncs.cc | |
parent | 9008eb40414dace8fd2bcd4d0274b94ef75950a6 (diff) | |
download | cygnal-3d9e3644ee302a25b177646bf85fd5fce135041b.tar.gz cygnal-3d9e3644ee302a25b177646bf85fd5fce135041b.tar.bz2 cygnal-3d9e3644ee302a25b177646bf85fd5fce135041b.zip |
* nlsfuncs.cc (__set_lc_messages_from_win): Fix typo.
Diffstat (limited to 'winsup/cygwin/nlsfuncs.cc')
-rw-r--r-- | winsup/cygwin/nlsfuncs.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/cygwin/nlsfuncs.cc b/winsup/cygwin/nlsfuncs.cc index 4c113f2cd..a847437d0 100644 --- a/winsup/cygwin/nlsfuncs.cc +++ b/winsup/cygwin/nlsfuncs.cc @@ -705,7 +705,7 @@ __set_lc_messages_from_win (const char *name, c2 = strchr (c + 1, '@'); /* Ignore @cjknarrow modifier since it's a very personal thing between Cygwin and newlib... */ - if (c2 && !strcmp (c2, "@cjknarrow")) + if (c2 && strcmp (c2, "@cjknarrow")) memmove (c, c2, strlen (c2) + 1); } /* Now search in the alphabetically order lc_msg array for the |