aboutsummaryrefslogtreecommitdiffstats
path: root/epan/uat.h
diff options
context:
space:
mode:
authorStephen Fisher <steve@stephen-fisher.com>2007-04-13 23:32:21 +0000
committerStephen Fisher <steve@stephen-fisher.com>2007-04-13 23:32:21 +0000
commitfa57c8fc446d10fb0b3c5252bc01e940a91bb21a (patch)
treee9da56f00dc44d86a3bbc90e9812755fa6b91fbd /epan/uat.h
parentd9e06450f401f55f27423146a2a0868719139128 (diff)
Fix some Solaris buildbot warnings
svn path=/trunk/; revision=21423
Diffstat (limited to 'epan/uat.h')
-rw-r--r--epan/uat.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/uat.h b/epan/uat.h
index 8f81f70db4..fe7f819d17 100644
--- a/epan/uat.h
+++ b/epan/uat.h
@@ -285,7 +285,7 @@ CHK_STR_IS_DECL(isxdigit);
gboolean uat_fld_chk_str_ ## what (void* u1 _U_, const char* strptr, unsigned len, void* u2 _U_, void* u3 _U_, char** err) { \
guint i; for (i=0;i<len;i++) { \
char c = strptr[i]; \
- if (! what(c)) { \
+ if (! what((int)c)) { \
*err = ep_strdup_printf("invalid char pos=%d value=%.2x",i,c); return FALSE; } } \
*err = NULL; return TRUE; }