From ce6bea082274d2629befcf781cafc28aa91925e3 Mon Sep 17 00:00:00 2001 From: Christian Stimming Date: Tue, 29 Apr 2003 21:33:51 +0000 Subject: [PATCH] More compiler warning fixes from Herbert Thoma git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@8258 57a11ea4-9604-0410-9ed3-97b8803252fd --- src/import-export/hbci/hbci-interaction.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/import-export/hbci/hbci-interaction.c b/src/import-export/hbci/hbci-interaction.c index 04ea519c19..024e9efac3 100644 --- a/src/import-export/hbci/hbci-interaction.c +++ b/src/import-export/hbci/hbci-interaction.c @@ -252,7 +252,7 @@ static int msgInputPin(const HBCI_User *user, if (!retval) break; - if (strlen(passwd) < minsize) { + if (strlen(passwd) < (unsigned int)minsize) { gboolean retval; char *msg = g_strdup_printf ( _("The PIN needs to be at least %d characters \n"