Changeset: 791dc1ec3403 for MonetDB
URL: http://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=791dc1ec3403
Modified Files:
        monetdb5/modules/mal/mosaic.c
Branch: mosaic
Log Message:

MOSdumpTask(): use correct format string rather than cast.


diffs (12 lines):

diff --git a/monetdb5/modules/mal/mosaic.c b/monetdb5/modules/mal/mosaic.c
--- a/monetdb5/modules/mal/mosaic.c
+++ b/monetdb5/modules/mal/mosaic.c
@@ -108,7 +108,7 @@ static void
 MOSdumpTask(Client cntxt,MOStask task)
 {
        int i;
-       mnstr_printf(cntxt->fdout,"#type %d todo "LLFMT"\n", task->type, 
(lng)task->elm);
+       mnstr_printf(cntxt->fdout,"#type %d todo "BUNFMT"\n", task->type, 
task->elm);
        mnstr_printf(cntxt->fdout,"#winners ");
        for(i=0; i< MOSAIC_METHODS; i++)
                mnstr_printf(cntxt->fdout,LLFMT " ",task->winners[i]);
_______________________________________________
checkin-list mailing list
[email protected]
https://www.monetdb.org/mailman/listinfo/checkin-list

Reply via email to