Changeset: 40e4fe795f44 for MonetDB
URL: http://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=40e4fe795f44
Modified Files:
        clients/R/MonetDB.R/src/profiler.c
Branch: default
Log Message:

unsigned short gets promoted to int, not unsigned int.


diffs (12 lines):

diff --git a/clients/R/MonetDB.R/src/profiler.c 
b/clients/R/MonetDB.R/src/profiler.c
--- a/clients/R/MonetDB.R/src/profiler.c
+++ b/clients/R/MonetDB.R/src/profiler.c
@@ -170,7 +170,7 @@ void profiler_renderbar(size_t state, si
        printf("%s ", symbol);
        for (bs=0; bs < symbols; bs++) printf("%s", profiler_symb_bfull);
        for (bs=0; bs < PROFILER_BARSYMB-symbols; bs++) printf("%s", 
profiler_symb_bfree); 
-       printf(" %3u%% ", percentage);
+       printf(" %3u%% ", (unsigned int) percentage);
        fflush(NULL);
 }
 
_______________________________________________
checkin-list mailing list
checkin-list@monetdb.org
https://www.monetdb.org/mailman/listinfo/checkin-list

Reply via email to