summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaulo Cesar Pereira de Andrade <pcpa@mandriva.com.br>2008-02-28 18:55:23 -0300
committerDavid Nusinow <dnusinow@debian.org>2008-02-28 19:34:35 -0500
commit3fe753215b6186e588246220a473417810f82b05 (patch)
tree2f6b3e6363364f23c7902c8e16c4f64166dd60fe
parente2735131202e7801e72ce33def666b6a0a543e26 (diff)
downloadxorg-lib-libXmu-3fe753215b6186e588246220a473417810f82b05.tar.gz
Compile warning fix by using Cardinal instead of int.
This also matches the function prototype.
-rw-r--r--src/StrToWidg.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/StrToWidg.c b/src/StrToWidg.c
index b9fb8a9..190e91f 100644
--- a/src/StrToWidg.c
+++ b/src/StrToWidg.c
@@ -60,7 +60,7 @@ XmuCvtStringToWidget(XrmValuePtr args, Cardinal *num_args,
{
static Widget widget, *widgetP, parent;
XrmName name = XrmStringToName(fromVal->addr);
- int i;
+ Cardinal i;
if (*num_args != 1)
{