Changeset: 575137f90d17 for MonetDB
URL: https://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=575137f90d17
Modified Files:
        clients/mapiclient/mclient.c
Branch: comment-on
Log Message:

Fix printf format.


diffs (12 lines):

diff --git a/clients/mapiclient/mclient.c b/clients/mapiclient/mclient.c
--- a/clients/mapiclient/mclient.c
+++ b/clients/mapiclient/mclient.c
@@ -2501,7 +2501,7 @@ doFile(Mapi mid, stream *fp, int useinse
                                                 * | "*a.my*"        | no       
     | fullname LIKE '%a.my%'        |
                                                */
                                                q += snprintf(q, endq - q, 
"SELECT type, fullname, remark FROM sys.describe_all_objects()\n");
-                                               q += snprintf(q, endq - q, 
"WHERE (ntype & %d > 0)\n", x);
+                                               q += snprintf(q, endq - q, 
"WHERE (ntype & %u) > 0\n", x);
                                                if (!wantsSystem) {
                                                        q += snprintf(q, endq - 
q, "AND NOT system\n");
                                                }
_______________________________________________
checkin-list mailing list
checkin-list@monetdb.org
https://www.monetdb.org/mailman/listinfo/checkin-list

Reply via email to