w3m

Unnamed repository; edit this file to name it for gitweb.
git clone https://logand.com/git/w3m.git/
Log | Files | Refs | README

commit b912b5ecbed03487e5c8a92248807a5228fe2036
parent 641dc940053f2860c8388defa2e94be5dc434a43
Author: inu <inu>
Date:   Mon, 17 Jun 2002 15:50:45 +0000

[w3m-dev 03214] strtoul() -> strtol() for SunOS4

Diffstat:
MChangeLog | 5+++++
Mframe.c | 2+-
2 files changed, 6 insertions(+), 1 deletion(-)

diff --git a/ChangeLog b/ChangeLog @@ -1,3 +1,8 @@ +2002-06-17 Dai Sato <satodai@dog.intcul.tohoku.ac.jp> + + * [w3m-dev 03214] strtoul() in frame.c + * frame.c (parseFrameSetLength): strtoul() -> strtol() + 2002-06-10 Kiyokazu SUTO <suto@ks-and-ks.ne.jp> * [w3m-dev-en 00752] Re: tab completion weirdness in w3m 0.3 diff --git a/frame.c b/frame.c @@ -38,7 +38,7 @@ parseFrameSetLength(char *s, char ***ret) for (i = 0, p = s;; ++p) { SKIP_BLANKS(p); - len = strtoul(p, &q, 10); + len = strtol(p, &q, 10); switch (*q) { case '%':