- Timestamp:
- Oct 22, 2009, 2:30:43 AM (13 years ago)
- Location:
- branches/1.7x
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/1.7x/NEWS
r9358 r9359 3 3 * Fix manpage errors 4 4 * Use automake's "quieter builds" rule when available 5 ==== Daemon ==== 6 * Fix ratio-limit bug on some uClibc systems 5 7 ==== GTK+ ==== 6 8 * Fix broken SIGINT (ctrl-c) handling -
branches/1.7x/libtransmission/JSON_parser.c
r8799 r9359 496 496 497 497 /* not checking with end pointer b/c there may be trailing ws */ 498 value.vu.float_value = strto ld(jc->parse_buffer, NULL);498 value.vu.float_value = strtod(jc->parse_buffer, NULL); 499 499 } 500 500 break; -
branches/1.7x/libtransmission/JSON_parser.h
r8409 r9359 55 55 JSON_int_t integer_value; 56 56 57 longdouble float_value;57 double float_value; 58 58 59 59 struct {
Note: See TracChangeset
for help on using the changeset viewer.