diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2012-10-30 16:07:09 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2012-10-30 16:07:09 -0700 |
commit | 028668d2f2604850122fa6ee22bcbc6720910caa (patch) | |
tree | 8144217bcac5f24176205f782634811650051b49 /lib.c | |
parent | a7501cdc8b3d5913dd449dc665ae684d6af4caa4 (diff) | |
download | txr-028668d2f2604850122fa6ee22bcbc6720910caa.tar.gz txr-028668d2f2604850122fa6ee22bcbc6720910caa.tar.bz2 txr-028668d2f2604850122fa6ee22bcbc6720910caa.zip |
* lib.c (string_lt): Bugfix: wcscmp returns some value less than zero,
not specifically -1.
Diffstat (limited to 'lib.c')
-rw-r--r-- | lib.c | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -2092,8 +2092,7 @@ val trim_str(val str) val string_lt(val astr, val bstr) { - int cmp = wcscmp(c_str(astr), c_str(bstr)); - return cmp == -1 ? t : nil; + return wcscmp(c_str(astr), c_str(bstr)) < 0 ? t : nil; } val int_str(val str, val base) |