diff options
author | Fumitoshi UKAI <ukai@debian.or.jp> | 2002-07-18 06:23:51 +0000 |
---|---|---|
committer | Fumitoshi UKAI <ukai@debian.or.jp> | 2002-07-18 06:23:51 +0000 |
commit | fa8a2631f0bccec7e98cc8b220dc3034793b4a17 (patch) | |
tree | 07aa464439a1420facf2acf98c685a285b43d3d1 /w3mimg | |
parent | XMakefile (w3mimg/w3mimg): added (diff) | |
download | w3m-fa8a2631f0bccec7e98cc8b220dc3034793b4a17.tar.gz w3m-fa8a2631f0bccec7e98cc8b220dc3034793b4a17.zip |
[w3m-dev 03270] Re: w3m-img for framebuffer merged
* w3mimg/x11/x11_w3mimg.c (w3mimg_x11open): unsigned int nchildren
From: Yoshinobu Sakane <sakane@d4.bsd.nes.nec.co.jp>
Diffstat (limited to 'w3mimg')
-rw-r--r-- | w3mimg/x11/x11_w3mimg.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/w3mimg/x11/x11_w3mimg.c b/w3mimg/x11/x11_w3mimg.c index 685f038..452c83a 100644 --- a/w3mimg/x11/x11_w3mimg.c +++ b/w3mimg/x11/x11_w3mimg.c @@ -1,4 +1,4 @@ -/* $Id: x11_w3mimg.c,v 1.1 2002/07/17 20:58:48 ukai Exp $ */ +/* $Id: x11_w3mimg.c,v 1.2 2002/07/18 06:23:51 ukai Exp $ */ #include <stdio.h> #include <stdlib.h> #include <ctype.h> @@ -248,7 +248,8 @@ w3mimg_x11open() w3mimg_op *wop = NULL; struct x11_info *xi = NULL; char *id; - int revert, i, nchildren; + int revert, i; + unsigned int nchildren; XWindowAttributes attr; Window root, *children; |