Fix guint32 vs gint32 in gnc-uri-utils test.

git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@18914 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
Geert Janssens 2010-03-15 20:06:18 +00:00
parent 19ca6a75c1
commit 883d71cdb4

View File

@ -39,7 +39,7 @@ struct test_strings_struct
gchar *username;
gchar *password;
gchar *path;
guint32 port;
gint32 port;
gchar *created_uri;
gchar *normalized_uri;
gboolean is_file_protocol;
@ -209,7 +209,7 @@ main(int argc, char **argv)
gchar *tusername = NULL;
gchar *tpassword = NULL;
gchar *tpath = NULL;
guint32 tport = 0;
gint32 tport = 0;
gboolean testresult;
gnc_uri_get_components( strs[i].uri, &tprotocol, &thostname,