diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2012-03-26 07:11:58 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2012-03-26 07:11:58 -0700 |
commit | 7892a9800b16ed13e59f92f236dfc373762c0048 (patch) | |
tree | 1785508318e9842f6452de6884b079fb46bd46d6 /arith.c | |
parent | 97f8a48e8aca3ab9837051d0d07e129fa41d7f17 (diff) | |
download | txr-7892a9800b16ed13e59f92f236dfc373762c0048.tar.gz txr-7892a9800b16ed13e59f92f236dfc373762c0048.tar.bz2 txr-7892a9800b16ed13e59f92f236dfc373762c0048.zip |
* arith.c (to_float): Fix unterminated argument list in throwf.
* lib.c (funcall): Likewise.
Diffstat (limited to 'arith.c')
-rw-r--r-- | arith.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -890,7 +890,7 @@ static val to_float(val func, val num) case FLNUM: return num; default: - uw_throwf(error_s, lit("~s: invalid operand ~s"), func, num); + uw_throwf(error_s, lit("~s: invalid operand ~s"), func, num, nao); } } |