Changeset: c46ae3053a29 for MonetDB
URL: http://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=c46ae3053a29
Modified Files:
        clients/mapiclient/eventparser.c
Branch: profiler
Log Message:

Fix compilation


diffs (12 lines):

diff --git a/clients/mapiclient/eventparser.c b/clients/mapiclient/eventparser.c
--- a/clients/mapiclient/eventparser.c
+++ b/clients/mapiclient/eventparser.c
@@ -203,7 +203,7 @@ keyvalueparser(char *txt, EventRecord *e
 
        if( strstr(key,"event")) { ev->eventnr= atol(val); return 0;}
        if( strstr(key,"clk")){
-               ev->clk = atoll(val); 
+               ev->clk = atol(val); 
                return 0;
        }
        if( strstr(key,"ctime")){
_______________________________________________
checkin-list mailing list
[email protected]
https://www.monetdb.org/mailman/listinfo/checkin-list

Reply via email to