Changeset: 52b35d90e947 for MonetDB
URL: http://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=52b35d90e947
Modified Files:
        clients/mapiclient/tomograph.c
Branch: Feb2013
Log Message:

portnr is of type int, not of type long


diffs (12 lines):

diff --git a/clients/mapiclient/tomograph.c b/clients/mapiclient/tomograph.c
--- a/clients/mapiclient/tomograph.c
+++ b/clients/mapiclient/tomograph.c
@@ -1594,7 +1594,7 @@ main(int argc, char **argv)
                        break;
                case 'p':
                        if (optarg)
-                               portnr = atol(optarg);
+                               portnr = atoi(optarg);
                        break;
                case 'h':
                        host = optarg;
_______________________________________________
checkin-list mailing list
[email protected]
http://mail.monetdb.org/mailman/listinfo/checkin-list

Reply via email to